Parcourir la source

I'm pretty sure we don't use instanced rendering anymore

rexim il y a 2 ans
Parent
commit
9de5ffb5bc
1 fichiers modifiés avec 0 ajouts et 10 suppressions
  1. 0 10
      src/main.c

+ 0 - 10
src/main.c

@@ -142,16 +142,6 @@ int main(int argc, char **argv)
         return 1;
     }
 
-    if (!GLEW_ARB_draw_instanced) {
-        fprintf(stderr, "ARB_draw_instanced is not supported; game may not work properly!!\n");
-        return 1;
-    }
-
-    if (!GLEW_ARB_instanced_arrays) {
-        fprintf(stderr, "ARB_instanced_arrays is not supported; game may not work properly!!\n");
-        return 1;
-    }
-
     glEnable(GL_BLEND);
     glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);