From 20cabc2ac02a38cc08b313d74d6d6cee9c806555 Mon Sep 17 00:00:00 2001 From: Timothy Arceri Date: Mon, 8 May 2017 10:59:15 +1000 Subject: [PATCH] mesa: add no error version of framebuffer_texture_with_dims() Reviewed-by: Eric Anholt --- src/mesa/main/fbobject.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index 4759441..636cdd8 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -3304,6 +3304,28 @@ _mesa_framebuffer_texture(struct gl_context *ctx, struct gl_framebuffer *fb, static void +framebuffer_texture_with_dims_no_error(GLenum target, GLenum attachment, + GLenum textarget, GLuint texture, + GLint level, GLint layer) +{ + GET_CURRENT_CONTEXT(ctx); + + /* Get the framebuffer object */ + struct gl_framebuffer *fb = get_framebuffer_target(ctx, target); + + /* Get the texture object */ + struct gl_texture_object *texObj = + get_texture_for_framebuffer(ctx, texture); + + struct gl_renderbuffer_attachment *att = + get_attachment(ctx, fb, attachment, NULL); + + _mesa_framebuffer_texture(ctx, fb, attachment, att, texObj, textarget, + level, layer, GL_FALSE); +} + + +static void framebuffer_texture_with_dims(int dims, GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint layer, -- 2.7.4