summaryrefslogtreecommitdiff
path: root/pkg/opengl/Program.zig
diff options
context:
space:
mode:
authorMitchell Hashimoto <mitchell.hashimoto@gmail.com>2024-08-16 15:28:22 -0700
committerMitchell Hashimoto <mitchell.hashimoto@gmail.com>2024-08-16 15:28:22 -0700
commitf13ea7cace0adeef12285ed13e621e25822808bd (patch)
tree5fb2e626b2dda35b5230054e23138ae5b8330542 /pkg/opengl/Program.zig
parent7299a026458c168f679a852e5a9141521ccb7ba0 (diff)
pkg/opengl: yeet usingns
Diffstat (limited to 'pkg/opengl/Program.zig')
-rw-r--r--pkg/opengl/Program.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/opengl/Program.zig b/pkg/opengl/Program.zig
index 824687e83..ee77582c1 100644
--- a/pkg/opengl/Program.zig
+++ b/pkg/opengl/Program.zig
@@ -4,7 +4,7 @@ const std = @import("std");
const assert = std.debug.assert;
const log = std.log.scoped(.opengl);
-const c = @import("c.zig");
+const c = @import("c.zig").c;
const Shader = @import("Shader.zig");
const errors = @import("errors.zig");
const glad = @import("glad.zig");