From 8d15268a61fe400668495e6cb42c4d15e8b17cbb Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Tue, 22 Nov 2011 19:29:56 -0800 Subject: [PATCH] i915: Fix complete texturing regression since 27505a105a I had notes to myself to test gen3 and gen4, and then I tested gen4 and called it good. Turns out I forgot to actually call the new function on gen3. --- src/mesa/drivers/dri/i915/i915_context.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mesa/drivers/dri/i915/i915_context.c b/src/mesa/drivers/dri/i915/i915_context.c index c5e589d..36563ef 100644 --- a/src/mesa/drivers/dri/i915/i915_context.c +++ b/src/mesa/drivers/dri/i915/i915_context.c @@ -164,6 +164,8 @@ i915CreateContext(int api, return false; } + intel_init_texture_formats(ctx); + _math_matrix_ctr(&intel->ViewportMatrix); /* Initialize swrast, tnl driver tables: */ -- 2.7.4