summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/fbobject.c
diff options
context:
space:
mode:
authorTimothy Arceri <[email protected]>2017-05-08 11:52:45 +1000
committerTimothy Arceri <[email protected]>2017-05-17 10:12:03 +1000
commit4e8aa4b9a205a21f1f87e29557e796d8664fa131 (patch)
treeafa9a6b6d16958f2148801547b065fc152bbb11f /src/mesa/main/fbobject.c
parentf6229284e28e394838f656d0048d074281655f71 (diff)
mesa: add KHR_no_error support for FramebufferTexture
V3: use the frame_buffer_texture() helper Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/mesa/main/fbobject.c')
-rw-r--r--src/mesa/main/fbobject.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/main/fbobject.c b/src/mesa/main/fbobject.c
index 2c6c599731b..82fec792bbd 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)
{