From 1defc973db3266a0ae72097951d12f8d851fed9a Mon Sep 17 00:00:00 2001 From: Marek Olšák Date: Wed, 14 Feb 2018 22:32:59 +0100 Subject: mesa: add some of missing compatibility support for ARB_bindless_texture MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The extension is exposed in the compatibility profile. Tested-by: Dieter Nützel Reviewed-by: Brian Paul --- src/mesa/main/api_loopback.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/mesa/main/api_loopback.c') diff --git a/src/mesa/main/api_loopback.c b/src/mesa/main/api_loopback.c index b552d17d6ac..4eab8118c78 100644 --- a/src/mesa/main/api_loopback.c +++ b/src/mesa/main/api_loopback.c @@ -1790,6 +1790,10 @@ _mesa_loopback_init_api_table(const struct gl_context *ctx, SET_VertexAttribI4sv(dest, _mesa_VertexAttribI4sv); SET_VertexAttribI4ubv(dest, _mesa_VertexAttribI4ubv); SET_VertexAttribI4usv(dest, _mesa_VertexAttribI4usv); + + /* GL_ARB_bindless_texture */ + SET_VertexAttribL1ui64ARB(dest, _mesa_VertexAttribL1ui64ARB); + SET_VertexAttribL1ui64vARB(dest, _mesa_VertexAttribL1ui64vARB); } if (ctx->API == API_OPENGL_CORE) { @@ -1803,9 +1807,5 @@ _mesa_loopback_init_api_table(const struct gl_context *ctx, SET_VertexAttribL2dv(dest, _mesa_VertexAttribL2dv); SET_VertexAttribL3dv(dest, _mesa_VertexAttribL3dv); SET_VertexAttribL4dv(dest, _mesa_VertexAttribL4dv); - - /* GL_ARB_bindless_texture */ - SET_VertexAttribL1ui64ARB(dest, _mesa_VertexAttribL1ui64ARB); - SET_VertexAttribL1ui64vARB(dest, _mesa_VertexAttribL1ui64vARB); } } -- cgit v1.2.3