Browse Source

Rename to `CreateProgramFromStrings`

gingerBill 3 years ago
parent
commit
f3432e6bb5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      vendor/wasm/WebGL/webgl_helpers.odin

+ 1 - 1
vendor/wasm/WebGL/webgl_helpers.odin

@@ -2,7 +2,7 @@ package webgl
 
 
 import "core:fmt"
 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
 	ok = true
 	log: [1024]byte
 	log: [1024]byte