commit | 4477a01372c87b84e859c7522501d55a62f11b88 | [log] [tgz] |
---|---|---|
author | Brian <brian.paul@tungstengraphics.com> | Tue Jul 24 09:57:26 2007 -0600 |
committer | Brian <brian.paul@tungstengraphics.com> | Tue Jul 24 09:57:26 2007 -0600 |
tree | 2919e59b2e8c12ce3b60c845004a72c18706cae5 | |
parent | 5b737b7df21b418c71f71af987a20c495b1133f8 [diff] [blame] |
call ctx->Driver.NewProgram() instead of _mesa_new_program()
diff --git a/src/mesa/shader/program.c b/src/mesa/shader/program.c index 4205919..1f22739 100644 --- a/src/mesa/shader/program.c +++ b/src/mesa/shader/program.c
@@ -333,7 +333,7 @@ { 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;