i965/surface_state: Remove the mcs_buf->offset == 0 restriction

This assert was removed in b0cc55f298 but
got added back in 1a43d774b6, probably by
accident.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
This commit is contained in:
Jason Ekstrand
2017-07-14 15:28:21 -07:00
parent 828c437078
commit f44171ef62
@@ -147,7 +147,6 @@ brw_emit_surface_state(struct brw_context *brw,
if (mt->mcs_buf) {
aux_surf = &mt->mcs_buf->surf;
assert(mt->mcs_buf->offset == 0);
aux_bo = mt->mcs_buf->bo;
aux_offset = mt->mcs_buf->bo->offset64 + mt->mcs_buf->offset;
} else {