소스 검색

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