2001-06-11 11:28:32 -04:00
|
|
|
(define pixel-value pixel-Xpixel)
|
|
|
|
|
|
|
|
(define (black-pixel display)
|
2001-10-09 11:45:26 -04:00
|
|
|
(make-pixel (%black-pixel (display-Xdisplay display))
|
|
|
|
#f #f))
|
2001-06-11 11:28:32 -04:00
|
|
|
|
|
|
|
(import-lambda-definition %black-pixel (Xdisplay)
|
2001-07-31 10:54:53 -04:00
|
|
|
"scx_Black_Pixel")
|
2001-06-11 11:28:32 -04:00
|
|
|
|
|
|
|
(define (white-pixel display)
|
2001-10-09 11:45:26 -04:00
|
|
|
(make-pixel (%white-pixel (display-Xdisplay display))
|
|
|
|
#f #f))
|
2001-06-11 11:28:32 -04:00
|
|
|
|
|
|
|
(import-lambda-definition %white-pixel (Xdisplay)
|
2001-07-31 10:54:53 -04:00
|
|
|
"scx_White_Pixel")
|