diff options
author | Keith Whitwell <[email protected]> | 2006-11-01 09:35:26 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2006-11-01 09:35:26 +0000 |
commit | fd60b2d5368e3385c1ba70c6d5d122b10ff20646 (patch) | |
tree | 2bec5082f959a192c8bc667aea3accc6f0a95411 /src/mesa | |
parent | d106195ad2ee5df9a4a7ce57055e48e2b9a2d1d7 (diff) |
Patch from <[email protected]> -- pass program string
notification callback through to tnl/ module, fixes glean crash.
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i915/i915_fragprog.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i915/i915_fragprog.c b/src/mesa/drivers/dri/i915/i915_fragprog.c index 0f3e6885f37..3f12da19380 100644 --- a/src/mesa/drivers/dri/i915/i915_fragprog.c +++ b/src/mesa/drivers/dri/i915/i915_fragprog.c @@ -937,6 +937,8 @@ static void i915ProgramStringNotify( GLcontext *ctx, ctx->Driver.Enable( ctx, GL_FRAGMENT_PROGRAM_ARB, ctx->FragmentProgram.Enabled ); } + + _tnl_program_string(ctx, target, prog); } |