summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/buffers.h
diff options
context:
space:
mode:
authorLaura Ekstrand <[email protected]>2015-02-06 10:34:24 -0800
committerFredrik Höglund <[email protected]>2015-05-14 15:48:15 +0200
commitf8fd8dfee8647a3bd2215fce49626953ecdbdbec (patch)
tree7546bbafb2e059e1a4e2d08d9c5027b74fa03a26 /src/mesa/main/buffers.h
parent9f1db78a83feebefb9e1ef889b3b6b0532482c14 (diff)
main: Refactor _mesa_drawbuffers.
[Fredrik: Whitespace fix] Reviewed-by: Fredrik Höglund <[email protected]> Signed-off-by: Fredrik Höglund <[email protected]>
Diffstat (limited to 'src/mesa/main/buffers.h')
-rw-r--r--src/mesa/main/buffers.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/buffers.h b/src/mesa/main/buffers.h
index ebcfa1c1e74..bc6d74a867e 100644
--- a/src/mesa/main/buffers.h
+++ b/src/mesa/main/buffers.h
@@ -36,6 +36,7 @@
#include "glheader.h"
struct gl_context;
+struct gl_framebuffer;
extern void GLAPIENTRY
_mesa_DrawBuffer( GLenum mode );
@@ -44,7 +45,8 @@ extern void GLAPIENTRY
_mesa_DrawBuffers(GLsizei n, const GLenum *buffers);
extern void
-_mesa_drawbuffers(struct gl_context *ctx, GLuint n, const GLenum *buffers,
+_mesa_drawbuffers(struct gl_context *ctx, struct gl_framebuffer *fb,
+ GLuint n, const GLenum *buffers,
const GLbitfield *destMask);
extern void