diff --git a/vendor/wasm/WebGL/webgl_helpers.odin b/vendor/wasm/WebGL/webgl_helpers.odin index d86086783..585706fbc 100644 --- a/vendor/wasm/WebGL/webgl_helpers.odin +++ b/vendor/wasm/WebGL/webgl_helpers.odin @@ -2,7 +2,7 @@ package webgl import "core:fmt" -CreateProgramHelper :: proc(vs_sources, fs_sources: []string) -> (program: Program, ok: bool) { +CreateProgramFromStrings :: proc(vs_sources, fs_sources: []string) -> (program: Program, ok: bool) { ok = true log: [1024]byte