From e83ca4052b3247c35f358cfe67d74a58c9fb37b1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristian=20H=C3=B8gsberg?= Date: Mon, 3 May 2010 21:18:04 -0400 Subject: [PATCH] mesa: Only initialize TNL for OpenGL --- src/mesa/main/context.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 439b6c8..4dd448a 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -901,10 +901,6 @@ _mesa_initialize_context_for_api(GLcontext *ctx, } #endif ctx->CurrentDispatch = ctx->Exec; - /* Neutral tnl module stuff */ - _mesa_init_exec_vtxfmt( ctx ); - ctx->TnlModule.Current = NULL; - ctx->TnlModule.SwapCount = 0; ctx->FragmentProgram._MaintainTexEnvProgram = (_mesa_getenv("MESA_TEX_PROG") != NULL); @@ -918,6 +914,11 @@ _mesa_initialize_context_for_api(GLcontext *ctx, switch (ctx->API) { case API_OPENGL: + /* Neutral tnl module stuff */ + _mesa_init_exec_vtxfmt( ctx ); + ctx->TnlModule.Current = NULL; + ctx->TnlModule.SwapCount = 0; + #if FEATURE_dlist ctx->Save = _mesa_create_save_table(); if (!ctx->Save) { -- 2.7.4