Skip to content

Commit

Permalink
render-op type definition
Browse files Browse the repository at this point in the history
Define a RENDER-OP type.  From Douglas Crosher via mcclim-devel.

darcs-hash:20060317143424-30503-721c8383c67f058f386e76c405f3b440f921d692.gz
  • Loading branch information
csrhodes committed Mar 17, 2006
1 parent 502e06d commit d4a0084
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion xrender.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,10 @@ by every function, which attempts to generate RENDER requests."
:out :out-reverse :atop :atop-reverse :xor :add :saturate :maximum))
((index thing) `(member8-put ,index ,thing
:clear :src :dst :over :over-reverse :in :in-reverse
:out :out-reverse :atop :atop-reverse :xor :add :saturate :maximum))))
:out :out-reverse :atop :atop-reverse :xor :add :saturate :maximum)))
(deftype render-op ()
'(member :clear :src :dst :over :over-reverse :in :in-reverse
:out :out-reverse :atop :atop-reverse :xor :add :saturate :maximum)))

;; Now these pictures objects are like graphics contexts. I was about
;; to introduce a synchronous mode, realizing that the RENDER protocol
Expand Down

0 comments on commit d4a0084

Please sign in to comment.