summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKeith Whitwell <[email protected]>2003-10-13 18:24:38 +0000
committerKeith Whitwell <[email protected]>2003-10-13 18:24:38 +0000
commit34f6df8b6d6aa42f35eb87c5811dd4920c4282c7 (patch)
tree1e0b3cbcccddad4cda1e1d52ab1478fc9c6c9dfd /src
parent5fc6940aca5efef2edab664700db5c7b914a4311 (diff)
Add code for GL_COMPILE_AND_EXECUTE
Diffstat (limited to 'src')
-rw-r--r--src/mesa/tnl/t_save_api.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/tnl/t_save_api.c b/src/mesa/tnl/t_save_api.c
index 643645f211b..225e18a6c89 100644
--- a/src/mesa/tnl/t_save_api.c
+++ b/src/mesa/tnl/t_save_api.c
@@ -259,11 +259,9 @@ static void _save_compile_vertex_list( GLcontext *ctx )
/* Deal with GL_COMPILE_AND_EXECUTE:
*/
-#if 0
if (ctx->ExecuteFlag) {
- execute_vertex_list( ctx, (void *)node );
+ _tnl_playback_vertex_list( ctx, (void *)node );
}
-#endif
}