mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 11:38:05 +02:00
v3dv: fix depth/stencil clear color
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6766>
This commit is contained in:
parent
03048b2613
commit
4c8531a144
1 changed files with 4 additions and 2 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue