diff options
| author | Karl Zylinski <karl@zylinski.se> | 2025-12-29 17:34:01 +0100 |
|---|---|---|
| committer | Karl Zylinski <karl@zylinski.se> | 2025-12-29 17:34:01 +0100 |
| commit | 3f9aefda202f9677987d72c0be52417772315edc (patch) | |
| tree | 3ba707ebb158d5fb4d457242e789ab39660f8276 /vendor | |
| parent | 159eab133b4b6dc9df6896d003134c1f0ccfde92 (diff) | |
Added CheckFramebufferStatus to WebGL bindings
Diffstat (limited to 'vendor')
| -rw-r--r-- | vendor/wasm/WebGL/webgl.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vendor/wasm/WebGL/webgl.odin b/vendor/wasm/WebGL/webgl.odin index 601071c3a..d607ec743 100644 --- a/vendor/wasm/WebGL/webgl.odin +++ b/vendor/wasm/WebGL/webgl.odin @@ -113,6 +113,7 @@ foreign webgl { Flush :: proc() --- FramebufferRenderbuffer :: proc(target, attachment, renderbufertarget: Enum, renderbuffer: Renderbuffer) --- FramebufferTexture2D :: proc(target, attachment, textarget: Enum, texture: Texture, level: i32) --- + CheckFramebufferStatus :: proc(target: Enum) -> Enum --- FrontFace :: proc(mode: Enum) --- GenerateMipmap :: proc(target: Enum) --- |