From b4ebb682027e42c1f6525d0f8cee9ccd41e15ca0 Mon Sep 17 00:00:00 2001 From: Keith Whitwell Date: Mon, 5 Dec 2005 11:44:09 +0000 Subject: Add guard before calling ctx->Driver.BindProgram --- src/mesa/tnl/t_vp_build.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/mesa/tnl/t_vp_build.c') diff --git a/src/mesa/tnl/t_vp_build.c b/src/mesa/tnl/t_vp_build.c index 2d42fafd88..77e105115c 100644 --- a/src/mesa/tnl/t_vp_build.c +++ b/src/mesa/tnl/t_vp_build.c @@ -1536,7 +1536,8 @@ void _tnl_UpdateFixedFunctionProgram( GLcontext *ctx ) /* Tell the driver about the change. Could define a new target for * this? */ - if (ctx->VertexProgram._Current != prev) + if (ctx->VertexProgram._Current != prev && + ctx->Driver.BindProgram) ctx->Driver.BindProgram(ctx, GL_VERTEX_PROGRAM_ARB, (struct program *) ctx->VertexProgram._Current); } -- cgit v1.2.3