mutter/cogl/tests/conform/test-no-gl-header.c
2016-04-22 16:44:31 +02:00

17 lines
290 B
C

#undef COGL_COMPILATION
#include <cogl/cogl.h>
/* If you just include cogl/cogl.h, you shouldn't end up including any
GL headers */
#ifdef GL_TRUE
#error "Including cogl.h shouldn't be including any GL headers"
#endif
void test_no_gl_header (void);
void
test_no_gl_header (void)
{
}