mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-05-20 07:08:40 +03:00
69 lines
1.7 KiB
Zig
69 lines
1.7 KiB
Zig
const std = @import("std");
|
|
const assert = std.debug.assert;
|
|
const Allocator = std.mem.Allocator;
|
|
const foundation = @import("../foundation.zig");
|
|
const graphics = @import("../graphics.zig");
|
|
const c = @import("c.zig");
|
|
|
|
pub const Path = opaque {
|
|
pub fn createWithRect(
|
|
rect: graphics.Rect,
|
|
transform: ?*const graphics.AffineTransform,
|
|
) Allocator.Error!*Path {
|
|
return @as(
|
|
?*Path,
|
|
@ptrFromInt(@intFromPtr(c.CGPathCreateWithRect(
|
|
@bitCast(rect),
|
|
@ptrCast(transform),
|
|
))),
|
|
) orelse Allocator.Error.OutOfMemory;
|
|
}
|
|
|
|
pub fn release(self: *Path) void {
|
|
foundation.CFRelease(self);
|
|
}
|
|
};
|
|
|
|
pub const MutablePath = opaque {
|
|
pub fn create() Allocator.Error!*MutablePath {
|
|
return @as(
|
|
?*MutablePath,
|
|
@ptrFromInt(@intFromPtr(c.CGPathCreateMutable())),
|
|
) orelse Allocator.Error.OutOfMemory;
|
|
}
|
|
|
|
pub fn release(self: *MutablePath) void {
|
|
foundation.CFRelease(self);
|
|
}
|
|
|
|
pub fn addRect(
|
|
self: *MutablePath,
|
|
transform: ?*const graphics.AffineTransform,
|
|
rect: graphics.Rect,
|
|
) void {
|
|
c.CGPathAddRect(
|
|
@ptrCast(self),
|
|
@ptrCast(transform),
|
|
@bitCast(rect),
|
|
);
|
|
}
|
|
|
|
pub fn getBoundingBox(self: *MutablePath) graphics.Rect {
|
|
return @bitCast(c.CGPathGetBoundingBox(@ptrCast(self)));
|
|
}
|
|
};
|
|
|
|
test "mutable path" {
|
|
//const testing = std.testing;
|
|
|
|
const path = try MutablePath.create();
|
|
defer path.release();
|
|
|
|
path.addRect(null, graphics.Rect.init(0, 0, 100, 200));
|
|
}
|
|
|
|
test "path from rect" {
|
|
const path = try Path.createWithRect(graphics.Rect.init(0, 0, 100, 200), null);
|
|
defer path.release();
|
|
}
|