diff options
author | Brian Paul <[email protected]> | 2011-01-15 10:32:34 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-01-15 17:37:41 -0700 |
commit | 1d1eb9578716913f4133786b30c6e6edc69a8a0c (patch) | |
tree | 4ba7959743ab71b82b8d37b39d1759d6f7a19a54 /src/mesa/main/api_exec.c | |
parent | 1250e2330b913d3e90bd0b28e46bf565a827b5bf (diff) |
mesa: support for GL_ARB_instanced_arrays
Diffstat (limited to 'src/mesa/main/api_exec.c')
-rw-r--r-- | src/mesa/main/api_exec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c index f1e4f7361f4..2f88946fbb0 100644 --- a/src/mesa/main/api_exec.c +++ b/src/mesa/main/api_exec.c @@ -711,6 +711,8 @@ _mesa_create_exec_table(void) SET_GetStringi(exec, _mesa_GetStringi); SET_ClampColor(exec, _mesa_ClampColorARB); + /* GL_ARB_instanced_arrays */ + SET_VertexAttribDivisorARB(exec, _mesa_VertexAttribDivisor); return exec; } |