Change ClearMask to ColorMask in webgl.odin

https://registry.khronos.org/OpenGL-Refpages/gl4/html/glColorMask.xhtml
This commit is contained in:
Kay
2024-02-02 23:42:37 -06:00
committed by GitHub
parent cec08114fd
commit 89a2fdd106
+1 -1
View File
@@ -64,7 +64,7 @@ foreign webgl {
ClearColor :: proc(r, g, b, a: f32) --- ClearColor :: proc(r, g, b, a: f32) ---
ClearDepth :: proc(x: Enum) --- ClearDepth :: proc(x: Enum) ---
ClearStencil :: proc(x: Enum) --- ClearStencil :: proc(x: Enum) ---
ClearMask :: proc(r, g, b, a: bool) --- ColorMask :: proc(r, g, b, a: bool) ---
CompileShader :: proc(shader: Shader) --- CompileShader :: proc(shader: Shader) ---
CompressedTexImage2D :: proc(target: Enum, level: i32, internalformat: Enum, width, height: i32, border: i32, imageSize: int, data: rawptr) --- CompressedTexImage2D :: proc(target: Enum, level: i32, internalformat: Enum, width, height: i32, border: i32, imageSize: int, data: rawptr) ---