diff options
author | Marek Olšák <[email protected]> | 2018-01-26 14:25:53 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2018-01-29 21:15:52 -0700 |
commit | f96a69f916aed40519e755d0460a83940a58780e (patch) | |
tree | 6515058fbd5ad07f986e1b31df217ae7910c7ab1 /src/mesa/main/buffers.h | |
parent | 94843e60562c52975325f59f21cb1c8e89f2fe20 (diff) |
mesa: replace GLenum with GLenum16 in common structures (v4)
v2: - fix glGet*
- also use GLenum16 for DrawBuffers
v3: - rebase to top of tree (BrianP) and incorporate Ian's suggestions
v4: - fix a GLenum16 bug in VBO/save code, add some STATIC_ASSERT()s
gl_context = 152432 -> 136840 bytes
vbo_context = 22096 -> 20608 bytes
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/mesa/main/buffers.h')
-rw-r--r-- | src/mesa/main/buffers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/buffers.h b/src/mesa/main/buffers.h index e48400668d0..c43810752b0 100644 --- a/src/mesa/main/buffers.h +++ b/src/mesa/main/buffers.h @@ -68,7 +68,7 @@ _mesa_NamedFramebufferDrawBuffers(GLuint framebuffer, GLsizei n, extern void _mesa_drawbuffers(struct gl_context *ctx, struct gl_framebuffer *fb, - GLuint n, const GLenum *buffers, + GLuint n, const GLenum16 *buffers, const GLbitfield *destMask); extern void |