Преглед на файлове

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);
 }