i965: Assert out on gen6 VS constant buffer reads that hang the GPU for now.
authorEric Anholt <eric@anholt.net>
Mon, 18 Oct 2010 19:41:10 +0000 (12:41 -0700)
committerEric Anholt <eric@anholt.net>
Mon, 18 Oct 2010 19:56:44 +0000 (12:56 -0700)
src/mesa/drivers/dri/i965/brw_vs_emit.c

index e2bff13..ce33479 100644 (file)
@@ -930,6 +930,8 @@ get_constant(struct brw_vs_compile *c,
 
    assert(argIndex < 3);
 
+   assert(c->func.brw->intel.gen < 6); /* FINISHME */
+
    if (c->current_const[argIndex].index != src->Index) {
       /* Keep track of the last constant loaded in this slot, for reuse. */
       c->current_const[argIndex].index = src->Index;
@@ -966,6 +968,8 @@ get_reladdr_constant(struct brw_vs_compile *c,
 
    assert(argIndex < 3);
 
+   assert(c->func.brw->intel.gen < 6); /* FINISHME */
+
    /* Can't reuse a reladdr constant load. */
    c->current_const[argIndex].index = -1;