mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-31 07:00:27 +01:00
nvk: Fix border color alpha
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24326>
This commit is contained in:
parent
d3f4a23f7b
commit
fe84f07fce
1 changed files with 1 additions and 1 deletions
|
|
@ -276,7 +276,7 @@ nvk_CreateSampler(VkDevice _device,
|
|||
SAMP_SET_U(samp, NV9097, 4, BORDER_COLOR_R, bc.uint32[0]);
|
||||
SAMP_SET_U(samp, NV9097, 5, BORDER_COLOR_G, bc.uint32[1]);
|
||||
SAMP_SET_U(samp, NV9097, 6, BORDER_COLOR_B, bc.uint32[2]);
|
||||
SAMP_SET_U(samp, NV9097, 7, BORDER_COLOR_A, bc.uint32[2]);
|
||||
SAMP_SET_U(samp, NV9097, 7, BORDER_COLOR_A, bc.uint32[3]);
|
||||
|
||||
memcpy(desc_map, samp, sizeof(samp));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue