Skip to content
Snippets Groups Projects
Commit 77922afb authored by Daniel Kochmański's avatar Daniel Kochmański
Browse files

clx-medium: force not using 24-bit depth

This is probably clx issue, see
#8 .

Closes #8.
parent 4bfc902a
No related branches found
No related tags found
No related merge requests found
......@@ -418,7 +418,8 @@
((<= depth 4) 'xlib::pixarray-4-element-type)
((<= depth 8) 'xlib::pixarray-8-element-type)
((<= depth 16) 'xlib::pixarray-16-element-type)
((<= depth 24) 'xlib::pixarray-24-element-type)
;; hack: CLX chokes on patterns with 24-bit depth
#+(or) ((<= depth 24) 'xlib::pixarray-24-element-type)
(t 'xlib::pixarray-32-element-type)))))
(declare (simple-vector design-pixels))
;; Cache the decoded designs from the pattern
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment