Skip to content

Commit 0336ac6

Browse files
committed
Fix ES profile binding
1 parent 44cc710 commit 0336ac6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zopengl.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ pub fn loadEsProfile(loader: LoaderFn, major: u32, minor: u32) !void {
861861
try load("glClear", .{&bindings.clear});
862862
try load("glClearColor", .{&bindings.clearColor});
863863
try load("glClearStencil", .{&bindings.clearStencil});
864-
try load("glClearDepth", .{&bindings.clearDepth});
864+
try load("glClearDepthf", .{&bindings.clearDepthf});
865865
try load("glStencilMask", .{&bindings.stencilMask});
866866
try load("glColorMask", .{&bindings.colorMask});
867867
try load("glDepthMask", .{&bindings.depthMask});

0 commit comments

Comments
 (0)