r600g: pad the DMA CS to a multiple of 8 dwords
[mesa.git] / src / mesa / main / hint.h
index fa29af6e14800fd81aff44b8688bb504dcd43111..ca9659d588681db92e62e43cb60899f25a15c140 100644 (file)
@@ -1,10 +1,18 @@
-/* $Id: hint.h,v 1.2 2000/11/22 07:32:17 joukj Exp $ */
+/**
+ * \file hint.h
+ * Hints operations.
+ * 
+ * \if subset
+ * (No-op)
+ *
+ * \endif
+ */
 
 /*
  * Mesa 3-D graphics library
- * Version:  3.3
+ * Version:  4.1
  *
- * Copyright (C) 1999-2000  Brian Paul   All Rights Reserved.
+ * Copyright (C) 1999-2002  Brian Paul   All Rights Reserved.
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),
 #ifndef HINT_H
 #define HINT_H
 
+#include "glheader.h"
+#include "mfeatures.h"
 
-#include "mtypes.h"
-
+struct gl_context;
 
-extern GLboolean
-_mesa_try_Hint( GLcontext *ctx, GLenum target, GLenum mode );
-
-extern void
+extern void GLAPIENTRY
 _mesa_Hint( GLenum target, GLenum mode );
 
-extern void
-_mesa_HintPGI( GLenum target, GLint mode );
-
+extern void 
+_mesa_init_hint( struct gl_context * ctx );
 
 #endif