diff options
author | Brian Paul <[email protected]> | 2011-05-25 20:27:44 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-05-25 20:27:44 -0600 |
commit | 4535c98cdb2ccb11dbf5af8662eed8f9a08fbca6 (patch) | |
tree | b598068897d611e9f4e82f5d7845c3a7e8738144 /src/mesa/main/dlist.c | |
parent | 8f7c815568ece6804e626255b74e9f729b74a0e6 (diff) |
mesa: plug in GL 3.0 ClearBuffer() display list functions
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r-- | src/mesa/main/dlist.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 9d96c8d527d..2f5dfa03629 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -10078,11 +10078,11 @@ _mesa_create_save_table(void) SET_ClampColor(table, save_ClampColorARB); /* GL 3.0 */ -#if 0 SET_ClearBufferiv(table, save_ClearBufferiv); SET_ClearBufferuiv(table, save_ClearBufferuiv); SET_ClearBufferfv(table, save_ClearBufferfv); SET_ClearBufferfi(table, save_ClearBufferfi); +#if 0 SET_Uniform1ui(table, save_Uniform1ui); SET_Uniform2ui(table, save_Uniform2ui); SET_Uniform3ui(table, save_Uniform3ui); @@ -10092,10 +10092,6 @@ _mesa_create_save_table(void) SET_Uniform3uiv(table, save_Uniform3uiv); SET_Uniform4uiv(table, save_Uniform4uiv); #else - (void) save_ClearBufferiv; - (void) save_ClearBufferuiv; - (void) save_ClearBufferfv; - (void) save_ClearBufferfi; (void) save_Uniform1ui; (void) save_Uniform2ui; (void) save_Uniform3ui; |