summaryrefslogtreecommitdiff
path: root/examples/pixels.c
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2025-01-14 06:33:54 +0100
committerMitya Selivanov <automainint@guattari.tech>2025-01-14 06:33:54 +0100
commitdced6f7768e02252af11f9b41017d75c66b47d81 (patch)
tree008f4cb816a09b776013d5903b34fb89c01cf042 /examples/pixels.c
parentc9208089c6074575342d529f494295c13269a1aa (diff)
downloadreduced_system_layer-dced6f7768e02252af11f9b41017d75c66b47d81.zip
Correct examples for changed graphics procs
Diffstat (limited to 'examples/pixels.c')
-rw-r--r--examples/pixels.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/pixels.c b/examples/pixels.c
index c47ac35..0579361 100644
--- a/examples/pixels.c
+++ b/examples/pixels.c
@@ -19,7 +19,7 @@ void update_and_render_frame(void) {
Brush white = RGB(1.f, 1.f, 1.f);
Brush black = RGB(0.f, 0.f, 0.f);
- black.antialiasing = 1;
+ white.quick = 1;
fill_rectangle(white, 0., 0., g_platform.real_width, g_platform.real_height);
fill_rectangle(black, x, y, 40., 40.);