st/mesa: additional assertions in dst_register()
authorBrian Paul <brianp@vmware.com>
Mon, 10 May 2010 18:31:35 +0000 (12:31 -0600)
committerBrian Paul <brianp@vmware.com>
Mon, 10 May 2010 18:35:52 +0000 (12:35 -0600)
src/mesa/state_tracker/st_mesa_to_tgsi.c

index 0991e99..bda8267 100644 (file)
@@ -156,6 +156,16 @@ dst_register( struct st_translate *t,
    case PROGRAM_OUTPUT:
       if (index == VERT_RESULT_PSIZ)
          t->prevInstWrotePsiz = GL_TRUE;
+
+      if (t->procType == TGSI_PROCESSOR_VERTEX)
+         assert(index < VERT_RESULT_MAX);
+      else if (t->procType == TGSI_PROCESSOR_FRAGMENT)
+         assert(index < FRAG_RESULT_MAX);
+      else
+         assert(0 && "geom shaders not handled in dst_register() yet");
+
+      assert(t->outputMapping[index] < Elements(t->outputs));
+
       return t->outputs[t->outputMapping[index]];
 
    case PROGRAM_ADDRESS: