mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 15:45:38 +00:00
8b5c0d8b0c
Updates gio#169 Signed-off-by: Elias Naur <mail@eliasnaur.com>
15 lines
404 B
Go
15 lines
404 B
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
/*
|
|
Package paint provides drawing operations for 2D graphics.
|
|
|
|
The PaintOp operation draws the current brush into a rectangular
|
|
area, taking the current clip path and transformation into account.
|
|
|
|
The current brush is set by either a ColorOp for a constant color, or
|
|
ImageOp for an image.
|
|
|
|
All color.RGBA values are in the sRGB color space.
|
|
*/
|
|
package paint
|