Merge pull request #464 from analogjupiter/pixmappaint

PixmapPaint October ’24 update
This commit is contained in:
Adam D. Ruppe 2024-11-23 15:22:28 -05:00 committed by GitHub
commit b0557bba5f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 1836 additions and 43 deletions

20
color.d
View File

@ -1906,6 +1906,23 @@ struct Point {
Size opCast(T : Size)() inout @nogc { Size opCast(T : Size)() inout @nogc {
return Size(x, y); return Size(x, y);
} }
/++
Calculates the point of linear offset in a rectangle.
`Offset = 0` is assumed to be equivalent to `Point(0,0)`.
See_also:
[linearOffset] is the inverse function.
History:
Added October 05, 2024.
+/
static Point fromLinearOffset(int linearOffset, int width) @nogc {
const y = (linearOffset / width);
const x = (linearOffset % width);
return Point(x, y);
}
} }
/// ///
@ -1959,6 +1976,9 @@ struct Size {
Returns: Returns:
`y * width + x` `y * width + x`
See_also:
[Point.fromLinearOffset] is the inverse function.
History: History:
Added December 19, 2023 (dub v11.4) Added December 19, 2023 (dub v11.4)
+/ +/

File diff suppressed because it is too large Load Diff

View File

@ -904,7 +904,7 @@ final class PixmapPresenter {
_renderer = renderer; _renderer = renderer;
// create software framebuffer // create software framebuffer
auto framebuffer = Pixmap(config.renderer.resolution); auto framebuffer = Pixmap.makeNew(config.renderer.resolution);
// OpenGL? // OpenGL?
auto openGlOptions = OpenGlOptions.no; auto openGlOptions = OpenGlOptions.no;