From: Timothy Arceri Date: Mon, 8 May 2017 01:52:45 +0000 (+1000) Subject: mesa: add KHR_no_error support for FramebufferTexture X-Git-Tag: upstream/18.1.0~9735 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4e8aa4b9a205a21f1f87e29557e796d8664fa131;p=platform%2Fupstream%2Fmesa.git mesa: add KHR_no_error support for FramebufferTexture V3: use the frame_buffer_texture() helper Reviewed-by: Nicolai Hähnle --- diff --git a/src/mapi/glapi/gen/GL3x.xml b/src/mapi/glapi/gen/GL3x.xml index d2c768d..10c157e 100644 --- a/src/mapi/glapi/gen/GL3x.xml +++ b/src/mapi/glapi/gen/GL3x.xml @@ -607,7 +607,7 @@ - + diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c index 2c6c599..82fec79 100644 --- a/src/mesa/main/fbobject.c +++ b/src/mesa/main/fbobject.c @@ -3555,6 +3555,15 @@ _mesa_NamedFramebufferTextureLayer(GLuint framebuffer, GLenum attachment, void GLAPIENTRY +_mesa_FramebufferTexture_no_error(GLenum target, GLenum attachment, + GLuint texture, GLint level) +{ + frame_buffer_texture(0, target, attachment, texture, level, 0, + "glFramebufferTexture", false, true, true); +} + + +void GLAPIENTRY _mesa_FramebufferTexture(GLenum target, GLenum attachment, GLuint texture, GLint level) { diff --git a/src/mesa/main/fbobject.h b/src/mesa/main/fbobject.h index a2f9264..1d064f8 100644 --- a/src/mesa/main/fbobject.h +++ b/src/mesa/main/fbobject.h @@ -258,6 +258,9 @@ _mesa_NamedFramebufferTextureLayer(GLuint framebuffer, GLenum attachment, GLuint texture, GLint level, GLint layer); extern void GLAPIENTRY +_mesa_FramebufferTexture_no_error(GLenum target, GLenum attachment, + GLuint texture, GLint level); +extern void GLAPIENTRY _mesa_FramebufferTexture(GLenum target, GLenum attachment, GLuint texture, GLint level);