v3dv: fix depth/stencil clear color

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6766>
This commit is contained in:
Iago Toral Quiroga 2020-03-17 14:38:57 +01:00 committed by Marge Bot
parent 03048b2613
commit 4c8531a144

View file

@ -448,8 +448,10 @@ enum v3dv_cmd_buffer_status {
union v3dv_clear_value {
uint32_t color[4];
float z;
uint8_t s;
struct {
float z;
uint8_t s;
};
};
struct v3dv_cmd_buffer_attachment_state {