Explorar el Código

Rename to `CreateProgramFromStrings`

gingerBill hace 3 años
padre
commit
f3432e6bb5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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"
 
-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