pkg/macos: yeet more usingns

This commit is contained in:
Mitchell Hashimoto
2024-08-16 16:50:41 -07:00
parent 17d844e7bf
commit 318dc85c02
15 changed files with 63 additions and 40 deletions

View File

@@ -2,11 +2,11 @@ const std = @import("std");
const assert = std.debug.assert;
const Allocator = std.mem.Allocator;
const graphics = @import("../graphics.zig");
const context = @import("context.zig");
const Context = @import("context.zig").Context;
const c = @import("c.zig").c;
pub const BitmapContext = opaque {
pub usingnamespace context.Context(BitmapContext);
pub const context = Context(BitmapContext);
pub fn create(
data: ?[]u8,