Skip to content

Commit

Permalink
protocol type fixes
Browse files Browse the repository at this point in the history
Fix various request argument types.  From Douglash Crosher on mcclim-devel.

darcs-hash:20060317143703-30503-37a198edb961a756cd47c48781c938f29e76d22f.gz
  • Loading branch information
csrhodes committed Mar 17, 2006
1 parent d4a0084 commit 0d309f6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions xrender.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -715,12 +715,12 @@ by every function, which attempts to generate RENDER requests."
(resource-id (picture-id source))
(resource-id (if mask (picture-id mask) 0))
(resource-id (picture-id dest))
(card16 src-x)
(card16 src-y)
(card16 mask-x)
(card16 mask-y)
(card16 dst-x)
(card16 dst-y)
(int16 src-x)
(int16 src-y)
(int16 mask-x)
(int16 mask-y)
(int16 dst-x)
(int16 dst-y)
(card16 width)
(card16 height))))

Expand Down Expand Up @@ -785,7 +785,7 @@ by every function, which attempts to generate RENDER requests."
(int16 src-x) (int16 src-y)
(card8 (- end start)) ;length of glyph elt
(card8 0) (card16 0) ;padding
(card16 dest-x) (card16 dest-y) ;dx, dy
(int16 dest-x) (int16 dest-y) ;dx, dy
((sequence :format card8) sequence))))

(defmacro %render-composite-glyphs
Expand All @@ -802,7 +802,7 @@ by every function, which attempts to generate RENDER requests."
(int16 ,src-x) (int16 ,src-y)
(card8 (- ,end ,start)) ;length of glyph elt
(card8 0) (card16 0) ;padding? really?
(card16 ,dest-x) (card16 ,dest-y) ;dx, dy
(int16 ,dest-x) (int16 ,dest-y) ;dx, dy
((sequence :format ,type :start ,start :end ,end :transform ,transform) ,sequence)))

(defun render-composite-glyphs (dest glyph-set source dest-x dest-y sequence
Expand Down

0 comments on commit 0d309f6

Please sign in to comment.