iris: Drop fast_clear_color's blorp_flags param

Now that conditional fast clears are disabled, the blorp_flags parameter
is unused.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7762>
This commit is contained in:
Nanley Chery 2020-11-24 14:18:31 -08:00 committed by Marge Bot
parent 04ac3a6620
commit fb4e67df1e
1 changed files with 3 additions and 4 deletions

View File

@ -213,8 +213,7 @@ fast_clear_color(struct iris_context *ice,
unsigned level,
const struct pipe_box *box,
enum isl_format format,
union isl_color_value color,
enum blorp_batch_flags blorp_flags)
union isl_color_value color)
{
struct iris_batch *batch = &ice->batches[IRIS_BATCH_RENDER];
struct pipe_resource *p_res = (void *) res;
@ -303,6 +302,7 @@ fast_clear_color(struct iris_context *ice,
/* If we reach this point, we need to fast clear to change the state to
* ISL_AUX_STATE_CLEAR, or to update the fast clear color (or both).
*/
enum blorp_batch_flags blorp_flags = 0;
blorp_flags |= color_changed ? 0 : BLORP_BATCH_NO_UPDATE_CLEAR_COLOR;
struct blorp_batch blorp_batch;
@ -362,8 +362,7 @@ clear_color(struct iris_context *ice,
render_condition_enabled,
format, color);
if (can_fast_clear) {
fast_clear_color(ice, res, level, box, format, color,
blorp_flags);
fast_clear_color(ice, res, level, box, format, color);
return;
}