diff options
author | Chia-I Wu <[email protected]> | 2010-05-12 13:37:37 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-05-12 13:50:29 +0800 |
commit | 8d5c83c467f83b44f5f2e271c4f9cca2d45af518 (patch) | |
tree | cf170ea7055cac1f90333584361c0528a86b374b /src/mesa/vbo/vbo_context.c | |
parent | eb5100accc888b9a9cfc24bc3d3452ea62a84c09 (diff) |
mesa/es: Remove omit list.
vbo/vbo_save* are the last members on the omit list. Test FEATURE_dlist
in the sources and remove the omit list.
Diffstat (limited to 'src/mesa/vbo/vbo_context.c')
-rw-r--r-- | src/mesa/vbo/vbo_context.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/vbo/vbo_context.c b/src/mesa/vbo/vbo_context.c index 13148fc3e22..580850574c9 100644 --- a/src/mesa/vbo/vbo_context.c +++ b/src/mesa/vbo/vbo_context.c @@ -198,10 +198,8 @@ GLboolean _vbo_CreateContext( GLcontext *ctx ) * vtxfmt mechanism can be removed now. */ vbo_exec_init( ctx ); -#if FEATURE_dlist if (ctx->API == API_OPENGL) vbo_save_init( ctx ); -#endif _math_init_eval(); @@ -233,10 +231,8 @@ void _vbo_DestroyContext( GLcontext *ctx ) } vbo_exec_destroy(ctx); -#if FEATURE_dlist if (ctx->API == API_OPENGL) vbo_save_destroy(ctx); -#endif FREE(vbo); ctx->swtnl_im = NULL; } |