diff options
author | Anuj Phogat <[email protected]> | 2017-03-03 14:39:52 -0800 |
---|---|---|
committer | Anuj Phogat <[email protected]> | 2017-03-09 09:47:30 -0800 |
commit | 29e2ba0756d0cfaef8658b38f2c7bc9fd45a2466 (patch) | |
tree | 80c8f305ca815a4a61c619ee527a5b0a3a0e379d /src/mesa/drivers/dri/i965/brw_meta_util.c | |
parent | a678b79ef4e97cad7cc488dd55f6983d9861e823 (diff) |
i965: Rename brw_format_for_mesa_format() to brw_isl_format_for_mesa_format()
Signed-off-by: Anuj Phogat <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_meta_util.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_meta_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_meta_util.c b/src/mesa/drivers/dri/i965/brw_meta_util.c index 07a160fc403..cbc2dedde83 100644 --- a/src/mesa/drivers/dri/i965/brw_meta_util.c +++ b/src/mesa/drivers/dri/i965/brw_meta_util.c @@ -288,7 +288,7 @@ brw_is_color_fast_clear_compatible(struct brw_context *brw, * this case. At least on Gen9 this really does seem to cause problems. */ if (brw->gen >= 9 && - brw_format_for_mesa_format(mt->format) != + brw_isl_format_for_mesa_format(mt->format) != brw->render_target_format[mt->format]) return false; |