From: Brian Date: Mon, 1 Oct 2007 19:54:24 +0000 (-0600) Subject: don't crash when fog enabled, still not rendered correctly though X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=726060680ba69aaec659f78e24f2db58acd780cb;p=mesa.git don't crash when fog enabled, still not rendered correctly though --- diff --git a/src/mesa/pipe/i915simple/i915_state_derived.c b/src/mesa/pipe/i915simple/i915_state_derived.c index 4b5b6a4fc85..7eb3f3a5fae 100644 --- a/src/mesa/pipe/i915simple/i915_state_derived.c +++ b/src/mesa/pipe/i915simple/i915_state_derived.c @@ -85,6 +85,10 @@ static void calculate_vertex_layout( struct i915_context *i915 ) vinfo->hwfmt[1] |= hwtc << (unit * 4); } break; + case TGSI_SEMANTIC_FOG: + fprintf(stderr, "i915 fogcoord not implemented yet\n"); + draw_emit_vertex_attr(vinfo, FORMAT_1F, INTERP_PERSPECTIVE); + break; default: assert(0); }