Alpha channel on windows
I can't seem to draw a transparent rectangle on windows. I do the following test: (setq p (capi:contain (make-instance 'capi:output-pane))) (capi:apply-in-pane-process p (lambda () (gp:clear-rectangle p 0 0 120 120) (gp:draw-line p 0 0 300 300 :foreground :red :thickness 3) (gp:draw-rectangle p 10 10 100 100 :filled t :foreground (color:make-rgb 0.9 0.9 0.9 0.5)))) On my mac, the red line shows through the gray rectangle. On my Windows XP box, it doesn't. Any idea why this might be? Thanks, Gail