anv: Fix a harmless overflow warning

anv_pipeline_binding::index is a uint8_t, but some code assigned to it
UINT16_MAX.

Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
Reviewd-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
Chad Versace
2016-06-14 16:20:07 -07:00
parent 067c5b10b6
commit c99a0a8bce

View File

@@ -664,7 +664,7 @@ anv_pipeline_compile_fs(struct anv_pipeline *pipeline,
rt_bindings[0] = (struct anv_pipeline_binding) { rt_bindings[0] = (struct anv_pipeline_binding) {
.set = ANV_DESCRIPTOR_SET_COLOR_ATTACHMENTS, .set = ANV_DESCRIPTOR_SET_COLOR_ATTACHMENTS,
.binding = 0, .binding = 0,
.index = UINT16_MAX, .index = UINT8_MAX,
}; };
num_rts = 1; num_rts = 1;
} }