nv50: handle VP without inputs
authorMarcin Slusarz <marcin.slusarz@gmail.com>
Mon, 7 May 2012 12:05:35 +0000 (14:05 +0200)
committerChristoph Bumiller <e0425955@student.tuwien.ac.at>
Mon, 7 May 2012 12:05:35 +0000 (14:05 +0200)
src/gallium/drivers/nv50/nv50_program.c

index 48e8db333f90edeb2e1d6d3c5e5682c39095fc38..ca40ac2dd43772c05241c8d13227c2e5112e3917 100644 (file)
@@ -68,6 +68,17 @@ nv50_vertprog_assign_slots(struct nv50_ir_prog_info *info)
          break;
       }
    }
+
+   /*
+    * Corner case: VP has no inputs, but we will still need to submit data to
+    * draw it. HW will shout at us and won't draw anything if we don't enable
+    * any input, so let's just pretend it's the first one.
+    */
+   if (prog->vp.attrs[0] == 0 &&
+       prog->vp.attrs[1] == 0 &&
+       prog->vp.attrs[2] == 0)
+      prog->vp.attrs[0] |= 0xf;
+
    /* VertexID before InstanceID */
    if (info->io.vertexId < info->numSysVals)
       info->sv[info->io.vertexId].slot[0] = n++;