From df6a2a719798d706d60b508106da363311a43469 Mon Sep 17 00:00:00 2001 From: "Kristian H. Kristensen" Date: Mon, 3 Feb 2020 12:52:47 -0800 Subject: [PATCH] turnip: Be explicit about converting vk compare func to a6xx Tested-by: Marge Bot Part-of: --- src/freedreno/vulkan/tu_device.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/freedreno/vulkan/tu_device.c b/src/freedreno/vulkan/tu_device.c index b91df7c4411..df846dac63b 100644 --- a/src/freedreno/vulkan/tu_device.c +++ b/src/freedreno/vulkan/tu_device.c @@ -1928,6 +1928,12 @@ tu6_tex_filter(VkFilter filter, unsigned aniso) } } +static inline enum adreno_compare_func +tu6_compare_func(VkCompareOp op) +{ + return (enum adreno_compare_func) op; +} + static void tu_init_sampler(struct tu_device *device, struct tu_sampler *sampler, @@ -1952,7 +1958,8 @@ tu_init_sampler(struct tu_device *device, COND(pCreateInfo->unnormalizedCoordinates, A6XX_TEX_SAMP_1_UNNORM_COORDS) | A6XX_TEX_SAMP_1_MIN_LOD(pCreateInfo->minLod) | A6XX_TEX_SAMP_1_MAX_LOD(pCreateInfo->maxLod) | - COND(pCreateInfo->compareEnable, A6XX_TEX_SAMP_1_COMPARE_FUNC(pCreateInfo->compareOp)); + COND(pCreateInfo->compareEnable, + A6XX_TEX_SAMP_1_COMPARE_FUNC(tu6_compare_func(pCreateInfo->compareOp))); sampler->state[2] = 0; sampler->state[3] = 0; -- 2.30.2