瀏覽代碼

note

Former-commit-id: e397cf5588ae6d87760ef3c1191035d107cd3765
Alec Jacobson 10 年之前
父節點
當前提交
270d169dfd
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      include/igl/compile_and_link_program.h

+ 3 - 0
include/igl/compile_and_link_program.h

@@ -10,6 +10,9 @@ namespace igl
   //   v_str  string of vertex shader contents
   //   f_str  string of fragment shader contents
   // Returns id of program
+  //
+  // Known bugs: this seems to duplicate `create_shader_program` with less
+  // functionality.
   IGL_INLINE GLuint compile_and_link_program(
     const char * v_str, const char * f_str);
 }