Files
zoom/third-party/glad/test/c/compile/gl/default/003/test.c

18 lines
306 B
C

/*
* No extensions compatibility GL
*
* GLAD: $GLAD --out-path=$tmp --api="gl:compatibility" --extensions="" c --loader
* COMPILE: $GCC $test -o $tmp/test -I$tmp/include $tmp/src/gl.c -ldl
* RUN: $tmp/test
*/
#include <glad/gl.h>
#ifdef GL_KHR_debug
#error
#endif
int main(void) {
return 0;
}