diff options
author | Samuel Pitoiset <[email protected]> | 2017-04-03 21:57:34 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-06-14 10:04:35 +0200 |
commit | 5f249b9f05ece03a7cbd591cdca0400cb619d11c (patch) | |
tree | 249820842c53fd870e0bba103bab9fc0bc7622d2 /src/mesa/main/api_loopback.c | |
parent | d364ab4a615b762b3684fa292590ef4cfaba9ea8 (diff) |
mapi: add GL_ARB_bindless_texture entry points
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/mesa/main/api_loopback.c')
-rw-r--r-- | src/mesa/main/api_loopback.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/mesa/main/api_loopback.c b/src/mesa/main/api_loopback.c index 59b59d3a9ec..36e5194b93e 100644 --- a/src/mesa/main/api_loopback.c +++ b/src/mesa/main/api_loopback.c @@ -1529,6 +1529,16 @@ _mesa_VertexAttribL1dv(GLuint index, const GLdouble *v) } void GLAPIENTRY +_mesa_VertexAttribL1ui64ARB(GLuint index, GLuint64EXT x) +{ +} + +void GLAPIENTRY +_mesa_VertexAttribL1ui64vARB(GLuint index, const GLuint64EXT *v) +{ +} + +void GLAPIENTRY _mesa_VertexAttribL2dv(GLuint index, const GLdouble *v) { ATTRIB2_D(index, v[0], v[1]); @@ -1789,5 +1799,9 @@ _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); } } |