Merge branch 'llvm-cliptest-viewport'
[mesa.git] / src / mesa / main / hint.h
index 6b8f34dc05a507eb0489d46e1c4453bb7db8c300..66e78ad655740e0f7b110a97dd8b2890b625f690 100644 (file)
@@ -1,4 +1,12 @@
-/* $Id: hint.h,v 1.4 2002/06/15 02:38:15 brianp Exp $ */
+/**
+ * \file hint.h
+ * Hints operations.
+ * 
+ * \if subset
+ * (No-op)
+ *
+ * \endif
+ */
 
 /*
  * Mesa 3-D graphics library
 
 #include "mtypes.h"
 
+#if _HAVE_FULL_GL
 
-extern void
+extern void GLAPIENTRY
 _mesa_Hint( GLenum target, GLenum mode );
 
+extern void 
+_mesa_init_hint( struct gl_context * ctx );
+
+#else
+
+/** No-op */
+#define _mesa_init_hint( c ) ((void) 0)
+
+#endif
 
 #endif