-
Notifications
You must be signed in to change notification settings - Fork 1
/
009_stroke_square.zig
31 lines (23 loc) · 968 Bytes
/
009_stroke_square.zig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// SPDX-License-Identifier: 0BSD
// Copyright © 2024 Chris Marchesi
//! Case: Renders and strokes a square on a 300x300 surface.
const mem = @import("std").mem;
const z2d = @import("z2d");
pub const filename = "009_stroke_square";
pub fn render(alloc: mem.Allocator, aa_mode: z2d.options.AntiAliasMode) !z2d.Surface {
const width = 300;
const height = 300;
var sfc = try z2d.Surface.init(.image_surface_rgb, alloc, width, height);
var context = try z2d.Context.init(alloc, &sfc);
defer context.deinit();
context.setSource(.{ .rgb = .{ .r = 0xFF, .g = 0xFF, .b = 0xFF } });
context.setAntiAliasingMode(aa_mode);
const margin = 50;
try context.moveTo(0 + margin, 0 + margin);
try context.lineTo(width - margin - 1, 0 + margin);
try context.lineTo(width - margin - 1, height - margin - 1);
try context.lineTo(0 + margin, height - margin - 1);
try context.close();
try context.stroke();
return sfc;
}