mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-07 03:20:28 +01:00
iris: Drop format param from fast_clear_color
It's unused. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14806>
This commit is contained in:
parent
6778b3a379
commit
ce37e176f1
1 changed files with 1 additions and 2 deletions
|
|
@ -165,7 +165,6 @@ fast_clear_color(struct iris_context *ice,
|
|||
struct iris_resource *res,
|
||||
unsigned level,
|
||||
const struct pipe_box *box,
|
||||
enum isl_format format,
|
||||
union isl_color_value color)
|
||||
{
|
||||
struct iris_batch *batch = &ice->batches[IRIS_BATCH_RENDER];
|
||||
|
|
@ -335,7 +334,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);
|
||||
fast_clear_color(ice, res, level, box, color);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue