summaryrefslogtreecommitdiff
path: root/src/mesa/shader/program.c
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-07-24 09:56:44 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-07-24 09:56:44 -0600
commit5b6858c023fca9d8eefce78121aabd9aad108e09 (patch)
treeccbb1b3edf34d967c1cac10278303bbff331fb42 /src/mesa/shader/program.c
parentffc633c469d5056a8f3766243279cdf64b0f98c3 (diff)
call ctx->Driver.NewProgram() instead of _mesa_new_program()
Diffstat (limited to 'src/mesa/shader/program.c')
-rw-r--r--src/mesa/shader/program.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/shader/program.c b/src/mesa/shader/program.c
index 4205919828..1f227390af 100644
--- a/src/mesa/shader/program.c
+++ b/src/mesa/shader/program.c
@@ -333,7 +333,7 @@ _mesa_clone_program(GLcontext *ctx, const struct gl_program *prog)
{
struct gl_program *clone;
- clone = _mesa_new_program(ctx, prog->Target, prog->Id);
+ clone = ctx->Driver.NewProgram(ctx, prog->Target, prog->Id);
if (!clone)
return NULL;