Revert "isl: Fix assertion failure for npot pixel formats"

This reverts commit 96d1baa88d.
This commit is contained in:
Jason Ekstrand 2015-12-30 21:01:55 -08:00
parent 0bb103d010
commit 4f9a211b4a

View file

@ -813,9 +813,9 @@ isl_calc_row_pitch(const struct isl_device *dev,
*/ */
if (info->usage & ISL_SURF_USAGE_RENDER_TARGET_BIT) { if (info->usage & ISL_SURF_USAGE_RENDER_TARGET_BIT) {
if (isl_format_is_yuv(info->format)) { if (isl_format_is_yuv(info->format)) {
row_pitch = isl_align_npot(row_pitch, fmtl->bs); row_pitch = isl_align(row_pitch, fmtl->bs);
} else { } else {
row_pitch = isl_align_npot(row_pitch, 2 * fmtl->bs); row_pitch = isl_align(row_pitch, 2 * fmtl->bs);
} }
} }
break; break;