[965] Fix indentation.

This commit is contained in:
Eric Anholt 2008-02-01 16:04:38 -08:00
parent f85d34e425
commit 30c9d96ebf

View file

@ -227,8 +227,8 @@ void brw_validate_state( struct brw_context *brw )
atom->dirty.cache);
assert(atom->update);
if (brw->intel.Fallback)
break;
if (brw->intel.Fallback)
break;
if (check_state(state, &atom->dirty)) {
atom->update( brw );
@ -251,10 +251,10 @@ void brw_validate_state( struct brw_context *brw )
for (i = 0; i < Elements(atoms); i++) {
const struct brw_tracked_state *atom = brw->state.atoms[i];
if (brw->intel.Fallback)
break;
if (check_state(state, &atom->dirty))
if (brw->intel.Fallback)
break;
if (check_state(state, &atom->dirty))
atom->update( brw );
}
}