瀏覽代碼

Rename to `CreateProgramFromStrings`

gingerBill 3 年之前
父節點
當前提交
f3432e6bb5
共有 1 個文件被更改,包括 1 次插入1 次删除
  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