From afb141156f09e7f2f22b88eeefe8e0800c26c1d6 Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Mon, 3 Apr 2017 22:03:10 +0200 Subject: mesa: add support for unsigned 64-bit vertex attributes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This adds support in the VBO and array code to handle unsigned 64-bit vertex attributes as specified by ARB_bindless_texture. Signed-off-by: Samuel Pitoiset Reviewed-by: Nicolai Hähnle --- src/mapi/glapi/gen/apiexec.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/mapi') diff --git a/src/mapi/glapi/gen/apiexec.py b/src/mapi/glapi/gen/apiexec.py index e5e1b7d78cb..61eda4b0f98 100644 --- a/src/mapi/glapi/gen/apiexec.py +++ b/src/mapi/glapi/gen/apiexec.py @@ -291,4 +291,7 @@ functions = { "ProgramUniform2ui64vARB": exec_info(core=31), "ProgramUniform3ui64vARB": exec_info(core=31), "ProgramUniform4ui64vARB": exec_info(core=31), + + # GL_ARB_bindless_texture + "GetVertexAttribLui64vARB": exec_info(core=31), } -- cgit v1.2.3