mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-02 04:38:16 +00:00
fixed webgl BindFramebuffer parameter
This commit is contained in:
Vendored
+1
-1
@@ -50,7 +50,7 @@ foreign webgl {
|
|||||||
AttachShader :: proc(program: Program, shader: Shader) ---
|
AttachShader :: proc(program: Program, shader: Shader) ---
|
||||||
BindAttribLocation :: proc(program: Program, index: i32, name: string) ---
|
BindAttribLocation :: proc(program: Program, index: i32, name: string) ---
|
||||||
BindBuffer :: proc(target: Enum, buffer: Buffer) ---
|
BindBuffer :: proc(target: Enum, buffer: Buffer) ---
|
||||||
BindFramebuffer :: proc(target: Enum, buffer: Buffer) ---
|
BindFramebuffer :: proc(target: Enum, framebuffer: Framebuffer) ---
|
||||||
BindTexture :: proc(target: Enum, texture: Texture) ---
|
BindTexture :: proc(target: Enum, texture: Texture) ---
|
||||||
BlendColor :: proc(red, green, blue, alpha: f32) ---
|
BlendColor :: proc(red, green, blue, alpha: f32) ---
|
||||||
BlendEquation :: proc(mode: Enum) ---
|
BlendEquation :: proc(mode: Enum) ---
|
||||||
|
|||||||
Reference in New Issue
Block a user