diff options
author | Keith Whitwell <[email protected]> | 2006-10-10 08:58:43 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2006-10-10 08:58:43 +0000 |
commit | d886423b3c0b800656ba5d4c6480bba90f8e5981 (patch) | |
tree | a562460131fcd0577b7fa7ef03a74fefe2839992 /src/mesa/drivers/dri/i915/i915_context.c | |
parent | fcd758868b494411247ef94e0ea7cbac3e3ed79f (diff) |
Use the mesa-provided texenv program rather than rolling our own.
Turn on texture crossbar support.
Diffstat (limited to 'src/mesa/drivers/dri/i915/i915_context.c')
-rw-r--r-- | src/mesa/drivers/dri/i915/i915_context.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i915/i915_context.c b/src/mesa/drivers/dri/i915/i915_context.c index 8c99d0e1d67..5e4703d2b04 100644 --- a/src/mesa/drivers/dri/i915/i915_context.c +++ b/src/mesa/drivers/dri/i915/i915_context.c @@ -50,6 +50,7 @@ static const struct dri_extension i915_extensions[] = { "GL_ARB_depth_texture", NULL }, { "GL_ARB_fragment_program", NULL }, { "GL_ARB_shadow", NULL }, + { "GL_ARB_texture_env_crossbar", NULL }, { "GL_EXT_shadow_funcs", NULL }, /* ARB extn won't work if not enabled */ { "GL_SGIX_depth_texture", NULL }, @@ -165,6 +166,7 @@ GLboolean i915CreateContext( const __GLcontextModes *mesaVis, I915_MAX_TEX_INSN); ctx->Const.FragmentProgram.MaxNativeTexIndirections = I915_MAX_TEX_INDIRECT; ctx->Const.FragmentProgram.MaxNativeAddressRegs = 0; /* I don't think we have one */ + ctx->_MaintainTexEnvProgram = 1; driInitExtensions( ctx, i915_extensions, GL_FALSE ); |