diff options
author | Dave Airlie <[email protected]> | 2016-12-23 06:41:32 +0000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2016-12-26 10:31:20 +1000 |
commit | b5bb8b54cf285277215fece1bc31051434d58b91 (patch) | |
tree | c5105444a4a624cf6ea6b3799ba4ad686de465a3 /src/amd/vulkan | |
parent | 4813c9ade70b4181ccf5d0ab462cf34da96373a6 (diff) |
radv: fix rendering to b10g11r11_ufloat_pack32
doom was causing a printf about an illegal color, it was due the
non-void returning -1, and the other function checking for 4,
align these.
Reviewed-by: Edward O'Callaghan <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/amd/vulkan')
-rw-r--r-- | src/amd/vulkan/radv_formats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_formats.c b/src/amd/vulkan/radv_formats.c index fe786b3a493..e276432c2ee 100644 --- a/src/amd/vulkan/radv_formats.c +++ b/src/amd/vulkan/radv_formats.c @@ -394,7 +394,7 @@ uint32_t radv_translate_color_numformat(VkFormat format, int first_non_void) { unsigned ntype; - if (first_non_void == 4 || desc->channel[first_non_void].type == VK_FORMAT_TYPE_FLOAT) + if (first_non_void == -1 || desc->channel[first_non_void].type == VK_FORMAT_TYPE_FLOAT) ntype = V_028C70_NUMBER_FLOAT; else { ntype = V_028C70_NUMBER_UNORM; |