mesa: remove unused UNCLAMPED_FLOAT_TO_RGB_CHAN() macro
[mesa.git] / src / mesa / main / buffers.h
index 83e1b4825119ce9c0732b883c1ad6aa24afed288..8083bc3d353358734fd98f725373aa8c08d7acdd 100644 (file)
@@ -5,9 +5,9 @@
 
 /*
  * Mesa 3-D graphics library
- * Version:  3.5
+ * Version:  7.1
  *
- * Copyright (C) 1999-2001  Brian Paul   All Rights Reserved.
+ * Copyright (C) 1999-2007  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"),
 #define BUFFERS_H
 
 
-#include "mtypes.h"
+#include "glheader.h"
 
+struct gl_context;
 
 extern void GLAPIENTRY
-_mesa_ClearIndex( GLfloat c );
+_mesa_DrawBuffer( GLenum mode );
 
 extern void GLAPIENTRY
-_mesa_ClearColor( GLclampf red, GLclampf green,
-                  GLclampf blue, GLclampf alpha );
+_mesa_DrawBuffersARB(GLsizei n, const GLenum *buffers);
 
-extern void GLAPIENTRY
-_mesa_Clear( GLbitfield mask );
+extern void
+_mesa_drawbuffers(struct gl_context *ctx, GLuint n, const GLenum *buffers,
+                  const GLbitfield *destMask);
 
-extern void GLAPIENTRY
-_mesa_DrawBuffer( GLenum mode );
+extern void
+_mesa_readbuffer(struct gl_context *ctx, GLenum buffer, GLint bufferIndex);
 
-extern void GLAPIENTRY
-_mesa_ReadBuffer( GLenum mode );
+extern void
+_mesa_update_draw_buffers(struct gl_context *ctx);
 
-extern void GLAPIENTRY
-_mesa_ResizeBuffersMESA( void );
-
-extern void GLAPIENTRY
-_mesa_Scissor( GLint x, GLint y, GLsizei width, GLsizei height );
 
 extern void GLAPIENTRY
-_mesa_SampleCoverageARB(GLclampf value, GLboolean invert);
-
-extern void 
-_mesa_init_buffers( GLcontext * ctx );
+_mesa_ReadBuffer( GLenum mode );
 
-extern void 
-_mesa_update_buffers( GLcontext *ctx );
 
 #endif