intel: Disable fast color clear on icl
Disabling fast color clear makes fbo-clearmipmap test render correct texture in base miplevel. Fast color clear is anyways disabled for non-base miplevels. Acked-by: Matt Turner <mattst88@gmail.com> Acked-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
@@ -1228,6 +1228,11 @@ do_single_blorp_clear(struct brw_context *brw, struct gl_framebuffer *fb,
|
||||
}
|
||||
}
|
||||
|
||||
/* FINISHME: Debug and enable fast clears */
|
||||
const struct gen_device_info *devinfo = &brw->screen->devinfo;
|
||||
if (devinfo->gen >= 11)
|
||||
can_fast_clear = false;
|
||||
|
||||
if (can_fast_clear) {
|
||||
const enum isl_aux_state aux_state =
|
||||
intel_miptree_get_aux_state(irb->mt, irb->mt_level, irb->mt_layer);
|
||||
|
Reference in New Issue
Block a user