r300g: one more r500_index_bias_supported leftover
authorMarek Olšák <maraeo@gmail.com>
Fri, 3 Dec 2010 19:59:55 +0000 (20:59 +0100)
committerMarek Olšák <maraeo@gmail.com>
Fri, 3 Dec 2010 19:59:55 +0000 (20:59 +0100)
src/gallium/drivers/r300/r300_render.c

index 07581408ab9c733adb9249a5e256d319c84bb921..e8542db4ca36aa0a3682db81f61651e0212f4777 100644 (file)
@@ -232,7 +232,6 @@ static boolean r300_emit_states(struct r300_context *r300,
     boolean emit_aos       = flags & PREP_EMIT_AOS;
     boolean emit_aos_swtcl = flags & PREP_EMIT_AOS_SWTCL;
     boolean indexed        = flags & PREP_INDEXED;
-    boolean hw_index_bias  = r500_index_bias_supported(r300);
 
     /* Validate buffers and emit dirty state if needed. */
     if (first_draw) {
@@ -244,7 +243,7 @@ static boolean r300_emit_states(struct r300_context *r300,
         }
 
         r300_emit_dirty_state(r300);
-        if (hw_index_bias) {
+        if (r300->screen->caps.index_bias_supported) {
             if (r300->screen->caps.has_tcl)
                 r500_emit_index_bias(r300, index_bias);
             else