diff options
author | Marek Olšák <[email protected]> | 2018-02-14 22:32:59 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-02-23 20:50:20 +0100 |
commit | 1defc973db3266a0ae72097951d12f8d851fed9a (patch) | |
tree | ec3fb1b7a50c23d21d2ccf5f1c609b192d648cc8 /src/mapi/glapi | |
parent | b8e2e9e1a1a8419f5292b0b2d9d2bdea2ce1b224 (diff) |
mesa: add some of missing compatibility support for ARB_bindless_texture
The extension is exposed in the compatibility profile.
Tested-by: Dieter Nützel <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mapi/glapi')
-rw-r--r-- | src/mapi/glapi/gen/apiexec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/glapi/gen/apiexec.py b/src/mapi/glapi/gen/apiexec.py index 7da0818f8ab..b5e0ad4a179 100644 --- a/src/mapi/glapi/gen/apiexec.py +++ b/src/mapi/glapi/gen/apiexec.py @@ -291,5 +291,5 @@ functions = { "ProgramUniform4ui64vARB": exec_info(core=31), # GL_ARB_bindless_texture - "GetVertexAttribLui64vARB": exec_info(core=31), + "GetVertexAttribLui64vARB": exec_info(compatibility=30, core=31), } |