Removed unused bits of glad.

This commit is contained in:
Camilla Berglund 2014-01-12 05:07:46 +01:00
parent 6e0015f022
commit fc92c5cc73
2 changed files with 0 additions and 41 deletions

38
deps/glad.c vendored
View File

@ -1,44 +1,6 @@
#include <string.h>
#include <glad/glad.h>
static int has_ext(const char *ext) {
if(GLVersion.major < 3) {
const char *extensions;
const char *loc;
const char *terminator;
extensions = (const char *)glGetString(GL_EXTENSIONS);
if(extensions == NULL || ext == NULL) {
return 0;
}
while(1) {
loc = strstr(extensions, ext);
if(loc == NULL) {
return 0;
}
terminator = loc + strlen(ext);
if((loc == extensions || *(loc - 1) == ' ') &&
(*terminator == ' ' || *terminator == '\0')) {
return 1;
}
extensions = terminator;
}
} else {
int num;
glGetIntegerv(GL_NUM_EXTENSIONS, &num);
unsigned int index;
for(index = 0; index < num; index++) {
const char *e = (const char*)glGetStringi(GL_EXTENSIONS, index);
if(strcmp(e, ext) == 0) {
return 1;
}
}
}
return 0;
}
int GLAD_GL_VERSION_1_0;
int GLAD_GL_VERSION_1_1;
int GLAD_GL_VERSION_1_2;

3
deps/glad/glad.h vendored
View File

@ -21,9 +21,6 @@
#ifndef APIENTRYP
#define APIENTRYP APIENTRY *
#endif
#ifndef GLAPI
#define GLAPI extern
#endif
struct {
int major;