mesa/main: not fill mesa_error on _mesa_legal_texture_base_format_for_target
[mesa.git] / src / mesa / main / buffers.h
index ca0cdafd05e7375c56025d6ea295c744e8318961..9df0815468806a06c87fe0a89e1dd71bf88ffd21 100644 (file)
@@ -1,10 +1,12 @@
-/* $Id: buffers.h,v 1.4 2001/05/29 15:23:48 brianp Exp $ */
+/**
+ * \file buffers.h
+ * Frame buffer management functions declarations.
+ */
 
 /*
  * Mesa 3-D graphics library
- * Version:  3.5
  *
- * 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"),
  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
- * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
- * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
+ * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+ * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ * OTHER DEALINGS IN THE SOFTWARE.
  */
 
 
+
 #ifndef BUFFERS_H
 #define BUFFERS_H
 
 
+#include "glheader.h"
 #include "mtypes.h"
 
+struct gl_context;
+struct gl_framebuffer;
 
-extern void
-_mesa_ClearIndex( GLfloat c );
 
-extern void
-_mesa_ClearColor( GLclampf red, GLclampf green,
-                  GLclampf blue, GLclampf alpha );
+extern void GLAPIENTRY
+_mesa_DrawBuffer( GLenum mode );
 
-extern void
-_mesa_Clear( GLbitfield mask );
+extern void GLAPIENTRY
+_mesa_NamedFramebufferDrawBuffer(GLuint framebuffer, GLenum buf);
 
-extern void
-_mesa_DrawBuffer( GLenum mode );
+extern void GLAPIENTRY
+_mesa_DrawBuffers(GLsizei n, const GLenum *buffers);
+
+extern void GLAPIENTRY
+_mesa_NamedFramebufferDrawBuffers(GLuint framebuffer, GLsizei n,
+                                  const GLenum *bufs);
 
 extern void
-_mesa_ReadBuffer( GLenum mode );
+_mesa_drawbuffers(struct gl_context *ctx, struct gl_framebuffer *fb,
+                  GLuint n, const GLenum *buffers,
+                  const GLbitfield *destMask);
 
 extern void
-_mesa_ResizeBuffersMESA( void );
+_mesa_readbuffer(struct gl_context *ctx, struct gl_framebuffer *fb,
+                 GLenum buffer, gl_buffer_index bufferIndex);
 
 extern void
-_mesa_SampleCoverageARB(GLclampf value, GLboolean invert);
+_mesa_update_draw_buffers(struct gl_context *ctx);
+
+
+extern void GLAPIENTRY
+_mesa_ReadBuffer( GLenum mode );
+
+extern void GLAPIENTRY
+_mesa_NamedFramebufferReadBuffer(GLuint framebuffer, GLenum src);
 
 
 #endif