diff options
author | Laura Ekstrand <[email protected]> | 2015-02-09 14:08:00 -0800 |
---|---|---|
committer | Fredrik Höglund <[email protected]> | 2015-05-14 15:48:16 +0200 |
commit | 9de7a81626304dae5ced4e202a820e353f8fc1e9 (patch) | |
tree | e78f25871244c51986bdee1af736070655aebfe5 /src/mesa/main/buffers.h | |
parent | 68c6964b376df7ef2248fab83e0f8abc6df56d47 (diff) |
main: Add entry point for NamedFramebufferDrawBuffers.
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.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/buffers.h b/src/mesa/main/buffers.h index 66871d70a09..5aa79fda54b 100644 --- a/src/mesa/main/buffers.h +++ b/src/mesa/main/buffers.h @@ -55,6 +55,10 @@ _mesa_draw_buffers(struct gl_context *ctx, struct gl_framebuffer *fb, 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_drawbuffers(struct gl_context *ctx, struct gl_framebuffer *fb, GLuint n, const GLenum *buffers, |