diff options
author | Timothy Arceri <[email protected]> | 2017-05-05 17:00:34 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2017-05-11 13:53:39 +1000 |
commit | 69ca1ef683b9cb3baaae423e726a0b867e0dbc33 (patch) | |
tree | 7334626ae6fec67c2204eea3696bb0d2fbe5fd35 /src/mesa/main/fbobject.h | |
parent | d90ced445c21b412c08928f0fc0af222021685f7 (diff) |
mesa: pass rb attachment to _mesa_framebuffer_texture()
This change will help us add KHR_no_error support to the caller.
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/main/fbobject.h')
-rw-r--r-- | src/mesa/main/fbobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/fbobject.h b/src/mesa/main/fbobject.h index aef2755c661..d0f905e46b0 100644 --- a/src/mesa/main/fbobject.h +++ b/src/mesa/main/fbobject.h @@ -127,9 +127,9 @@ _mesa_get_and_validate_attachment(struct gl_context *ctx, extern void _mesa_framebuffer_texture(struct gl_context *ctx, struct gl_framebuffer *fb, GLenum attachment, + struct gl_renderbuffer_attachment *att, struct gl_texture_object *texObj, GLenum textarget, - GLint level, GLuint layer, GLboolean layered, - const char *caller); + GLint level, GLuint layer, GLboolean layered); extern GLenum _mesa_check_framebuffer_status(struct gl_context *ctx, |