18 lines
309 B
C
18 lines
309 B
C
|
#include <cogl/cogl.h>
|
||
|
|
||
|
#include "test-utils.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)
|
||
|
{
|
||
|
if (cogl_test_verbose ())
|
||
|
g_print ("OK\n");
|
||
|
}
|
||
|
|