i965: Add missing "break" statement.
authorKenneth Graunke <kenneth@whitecape.org>
Mon, 18 Oct 2010 19:21:20 +0000 (12:21 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Mon, 18 Oct 2010 19:21:20 +0000 (12:21 -0700)
Otherwise, it would try to handle arrays as structures, use
uninitialized memory, and crash.

src/mesa/drivers/dri/i965/brw_fs.cpp

index 554ba39..85fd6d0 100644 (file)
@@ -941,6 +941,7 @@ fs_visitor::emit_assignment_writes(fs_reg &l, fs_reg &r,
       for (unsigned int i = 0; i < type->length; i++) {
         emit_assignment_writes(l, r, type->fields.array, predicated);
       }
+      break;
 
    case GLSL_TYPE_STRUCT:
       for (unsigned int i = 0; i < type->length; i++) {