Package: gdk
Function gdk:cairo-set-source-rgba
Lambda Listgdk:cairo-set-source-rgba (cr rgba) ArgumentsDetails Sets the specified rgba color as the source color of the Cairo
context. Examples(gtk:drawing-area-set-draw-func area (lambda (widget cr width height) (declare (ignore widget width height)) (let ((rgba (gdk:rgba-parse color))) (when rgba (gdk:cairo-set-source-rgba cr rgba) (cairo:paint cr))))) | See also |
2024-6-30