diff options
author | Brian Paul <[email protected]> | 2010-11-21 09:19:23 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-11-21 09:20:44 -0700 |
commit | 5ed51e950f8b5850cada5aa6289215dbf254c1c7 (patch) | |
tree | 0fe2e8dfe748ac01bb72e1ff1173b286fb55a17a /src/mesa/main/api_exec.c | |
parent | 81c347ef79bc495eb45ae3e257bc534a6ebbf83d (diff) |
mesa: hook up GL 3.x entrypoints
Fix up some details in the xml files and regenerate dispatch files.
Diffstat (limited to 'src/mesa/main/api_exec.c')
-rw-r--r-- | src/mesa/main/api_exec.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c index 25ece5c95e9..1427abd107a 100644 --- a/src/mesa/main/api_exec.c +++ b/src/mesa/main/api_exec.c @@ -699,6 +699,15 @@ _mesa_create_exec_table(void) SET_GetVertexAttribIuivEXT(exec, _mesa_GetVertexAttribIuiv); SET_VertexAttribIPointerEXT(exec, _mesa_VertexAttribIPointer); + /* GL 3.0 (functions not covered by other extensions) */ + SET_ClearBufferiv(exec, _mesa_ClearBufferiv); + SET_ClearBufferuiv(exec, _mesa_ClearBufferuiv); + SET_ClearBufferfv(exec, _mesa_ClearBufferfv); + SET_ClearBufferfi(exec, _mesa_ClearBufferfi); + SET_GetStringi(exec, _mesa_GetStringi); + SET_ClampColor(exec, _mesa_ClampColorARB); + + return exec; } |