mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
Change ClearMask to ColorMask in webgl.odin
https://registry.khronos.org/OpenGL-Refpages/gl4/html/glColorMask.xhtml
This commit is contained in:
Vendored
+1
-1
@@ -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) ---
|
||||||
|
|||||||
Reference in New Issue
Block a user