mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 07:35:40 +00:00
e864ac3fc3
Signed-off-by: Elias Naur <mail@eliasnaur.com>
13 lines
350 B
Go
13 lines
350 B
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
/*
|
|
Package paint provides drawing operations for 2D graphics.
|
|
|
|
The PaintOp operation draws the current material into a rectangular
|
|
area, taking the current clip path and transformation into account.
|
|
|
|
The material is set by either a ColorOp for a constant color, or
|
|
ImageOp for an image.
|
|
*/
|
|
package paint
|