#include <gl.h>
#include <glu.h>
+#include <GL/glx.h>
#ifdef USE_THREADS
#define HAVE_TLS_CONTEXT
gluSphere ( quad, radius, slices, stacks );
+
+void
+glXUseXFont ( font, first, count, list_base )
+ Font font
+ int first
+ int count
+ int list_base
+ CODE:
+ glXUseXFont ( font, first, count, list_base );
+
#endif
use Test::More;
if ( SDL::Config->has('GL') && SDL::Config->has('GLU') ) {
- plan ( tests => 3 );
+ plan ( tests => 4 );
} else {
plan ( skip_all => 'OpenGL support not compiled' );
}
gluDisk
gluPartialDisk
gluSphere /);
+
+can_ok('main',qw/glXUseXFont/);