Skip to content

Commit 1ee4b01

Browse files
committed
wrapper.zig add missing shaders types
1 parent fe574e1 commit 1ee4b01

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/wrapper.zig

+9
Original file line numberDiff line numberDiff line change
@@ -598,6 +598,15 @@ pub fn Wrap(comptime bindings: anytype) type {
598598
// OpenGL 3.2 (Core Profile)
599599
//--------------------------------------------------------------------------------------
600600
geometry = GEOMETRY_SHADER,
601+
//--------------------------------------------------------------------------------------
602+
// OpenGL 4.0 (Core Profile)
603+
//--------------------------------------------------------------------------------------
604+
tess_control = TESS_CONTROL_SHADER,
605+
tess_evaluation = TESS_EVALUATION_SHADER,
606+
//--------------------------------------------------------------------------------------
607+
// OpenGL 4.3 (Core Profile)
608+
//--------------------------------------------------------------------------------------
609+
compute = COMPUTE_SHADER,
601610
};
602611

603612
pub const ShaderParameter = enum(Enum) {

0 commit comments

Comments
 (0)