summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZou Nan hai <nanhai.zou@intel.com>2007-07-17 11:19:52 +0800
committerZou Nan hai <nanhai.zou@intel.com>2007-07-17 11:19:52 +0800
commit719cf0b7958d0dedf8727c97eaddb6a1f31977e1 (patch)
tree2390df2b65c2abff72d0bdda1c2136aaf6a0f076
parent575f3e918f00bdc0faa4a173820015b24175696f (diff)
Use ProgramStringNotify
-rw-r--r--src/mesa/drivers/dri/i965/brw_context.c27
-rw-r--r--src/mesa/shader/program.c2
2 files changed, 2 insertions, 27 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c
index badf178b68..8366f14dbe 100644
--- a/src/mesa/drivers/dri/i965/brw_context.c
+++ b/src/mesa/drivers/dri/i965/brw_context.c
@@ -62,30 +62,6 @@ static const struct dri_extension brw_extensions[] =
{ NULL, NULL }
};
-static void brwLinkProgram(GLcontext *ctx, GLuint program)
-{
- struct brw_context *brw = brw_context(ctx);
- struct brw_vertex_program *vert_prog;
- struct brw_fragment_program *frag_prog;
- struct gl_shader_program *sh_prog;
- _mesa_link_program(ctx, program);
-
- sh_prog = _mesa_lookup_shader_program(ctx, program);
- if (sh_prog) {
- sh_prog->FragmentProgram =
- _mesa_realloc(sh_prog->FragmentProgram,
- sizeof(struct gl_fragment_program),
- sizeof(struct brw_fragment_program));
- frag_prog = (struct brw_fragment_program *)sh_prog->FragmentProgram;
- frag_prog->id = brw->program_id++;
- sh_prog->VertexProgram = _mesa_realloc(sh_prog->VertexProgram,
- sizeof(struct gl_vertex_program),
- sizeof(struct brw_vertex_program));
- vert_prog = (struct brw_vertex_program *)sh_prog->VertexProgram;
- vert_prog->id = brw->program_id++;
- }
-}
-
static void brwUseProgram(GLcontext *ctx, GLuint program)
{
struct brw_context *brw = brw_context(ctx);
@@ -97,15 +73,12 @@ static void brwUseProgram(GLcontext *ctx, GLuint program)
ctx->FragmentProgram.Enabled = GL_TRUE;
brw->attribs.VertexProgram->Current = sh_prog->VertexProgram;
brw->attribs.FragmentProgram->Current = sh_prog->FragmentProgram;
- brw->state.dirty.brw |= BRW_NEW_VERTEX_PROGRAM;
- brw->state.dirty.brw |= BRW_NEW_FRAGMENT_PROGRAM;
}
}
static void brwInitProgFuncs( struct dd_function_table *functions )
{
functions->UseProgram = brwUseProgram;
- functions->LinkProgram = brwLinkProgram;
}
static void brwInitDriverFunctions( struct dd_function_table *functions )
{
diff --git a/src/mesa/shader/program.c b/src/mesa/shader/program.c
index 4205919828..03be368a92 100644
--- a/src/mesa/shader/program.c
+++ b/src/mesa/shader/program.c
@@ -242,6 +242,8 @@ _mesa_init_vertex_program( GLcontext *ctx, struct gl_vertex_program *prog,
struct gl_program *
_mesa_new_program(GLcontext *ctx, GLenum target, GLuint id)
{
+ if (ctx->Driver.NewProgram)
+ return ctx->Driver.NewProgram(ctx, target, id);
switch (target) {
case GL_VERTEX_PROGRAM_ARB: /* == GL_VERTEX_PROGRAM_NV */
return _mesa_init_vertex_program(ctx, CALLOC_STRUCT(gl_vertex_program),