Home
last modified time | relevance | path

Searched refs:anisotropyEnable (Results 1 - 25 of 46) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkSampler.cpp29 , anisotropyEnable(pCreateInfo->anisotropyEnable) in SamplerState()
H A DVkSampler.hpp45 const VkBool32 anisotropyEnable = VK_FALSE; member
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
H A DSamplerVk.cpp93 createInfo.anisotropyEnable = VK_TRUE; in Initialize()
99 createInfo.anisotropyEnable = VK_FALSE; in Initialize()
/third_party/skia/src/gpu/vk/
H A DGrVkSampler.cpp64 createInfo.anisotropyEnable = VK_FALSE; in Create()
111 createInfo.anisotropyEnable = VK_FALSE; in Create()
/third_party/mesa3d/src/intel/vulkan/
H A DgenX_state.c879 vk_to_intel_tex_filter(VkFilter filter, bool anisotropyEnable) in vk_to_intel_tex_filter() argument
885 return anisotropyEnable ? MAPFILTER_ANISOTROPIC : MAPFILTER_NEAREST; in vk_to_intel_tex_filter()
887 return anisotropyEnable ? MAPFILTER_ANISOTROPIC : MAPFILTER_LINEAR; in vk_to_intel_tex_filter()
1101 .MagModeFilter = vk_to_intel_tex_filter(mag_filter, pCreateInfo->anisotropyEnable), in CreateSampler()
1102 .MinModeFilter = vk_to_intel_tex_filter(min_filter, pCreateInfo->anisotropyEnable), in CreateSampler()
1105 pCreateInfo->anisotropyEnable ? EWAApproximation : LEGACY, in CreateSampler()
/third_party/mesa3d/src/virtio/venus-protocol/
H A Dvn_protocol_driver_sampler.h175 size += vn_sizeof_VkBool32(&val->anisotropyEnable); in vn_sizeof_VkSamplerCreateInfo_self()
247 vn_encode_VkBool32(enc, &val->anisotropyEnable); in vn_encode_VkSamplerCreateInfo_self()
/third_party/mesa3d/src/broadcom/vulkan/
H A Dv3dvx_device.c213 if (pCreateInfo->anisotropyEnable) { in pack_sampler_state()
/third_party/skia/third_party/externals/swiftshader/tests/VulkanBenchmarks/
H A DTriangleBenchmarks.cpp255 samplerInfo.anisotropyEnable = VK_FALSE; in TriangleSampleTexture()
/third_party/mesa3d/src/microsoft/vulkan/
H A Ddzn_util.c239 if (!create_info->anisotropyEnable) { in dzn_translate_sampler_filter()
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSpirvShaderSampling.cpp278 if(samplerState->anisotropyEnable != VK_FALSE) in convertFilterMode()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/
H A DvktMemoryAddressBindingTests.cpp786 VkBool32 anisotropyEnable;
803 , anisotropyEnable (VK_FALSE)
833 params.anisotropyEnable, // VkBool32 anisotropyEnable;
H A DvktMemoryDeviceMemoryReportTests.cpp771 VkBool32 anisotropyEnable;
788 , anisotropyEnable (VK_FALSE)
818 params.anisotropyEnable, // VkBool32 anisotropyEnable;
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/
H A DvktMemoryAddressBindingTests.cpp747 VkBool32 anisotropyEnable;
764 , anisotropyEnable (VK_FALSE)
794 params.anisotropyEnable, // VkBool32 anisotropyEnable;
H A DvktMemoryDeviceMemoryReportTests.cpp765 VkBool32 anisotropyEnable;
782 , anisotropyEnable (VK_FALSE)
812 params.anisotropyEnable, // VkBool32 anisotropyEnable;
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/
H A DvktDrawCreateInfoUtil.hpp502 vk::VkBool32 anisotropyEnable = VK_FALSE,
H A DvktDrawCreateInfoUtil.cpp1207 anisotropyEnable = _anisotropyEnable; in SamplerCreateInfo()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/
H A DvktDrawCreateInfoUtil.hpp502 vk::VkBool32 anisotropyEnable = VK_FALSE,
H A DvktDrawCreateInfoUtil.cpp1207 anisotropyEnable = _anisotropyEnable; in SamplerCreateInfo()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A Dvk_cache_utils.cpp3347 bool anisotropyEnable = extensions.textureFilterAnisotropicEXT && mMaxAnisotropy > 1.0f;
3359 createInfo.anisotropyEnable = anisotropyEnable;
3397 createInfo.anisotropyEnable = VK_FALSE;
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
H A DvktApiObjectManagementTests.cpp1513 VkBool32 anisotropyEnable;
1531 , anisotropyEnable (VK_FALSE)
1569 params.anisotropyEnable,
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/
H A DvktApiObjectManagementTests.cpp1513 VkBool32 anisotropyEnable;
1531 , anisotropyEnable (VK_FALSE)
1569 params.anisotropyEnable,
/third_party/ffmpeg/libavutil/
H A Dvulkan.c685 .anisotropyEnable = VK_FALSE, in FN_CREATING()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkSafetyCriticalUtil.cpp577 hash_combine(seed, deUint32(sCI.flags), deUint32(sCI.magFilter), deUint32(sCI.minFilter), deUint32(sCI.mipmapMode), deUint32(sCI.addressModeU), deUint32(sCI.addressModeV), deUint32(sCI.addressModeW), sCI.mipLodBias, sCI.anisotropyEnable, sCI.maxAnisotropy, sCI.compareEnable, deUint32(sCI.compareOp), sCI.minLod, sCI.maxLod, deUint32(sCI.borderColor), sCI.unnormalizedCoordinates); in calculateSamplerHash()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/texture/
H A DvktTextureTestUtil.cpp1434 samplerCreateInfo.anisotropyEnable = VK_TRUE; in renderQuad()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/texture/
H A DvktTextureTestUtil.cpp1467 samplerCreateInfo.anisotropyEnable = VK_TRUE; in renderQuad()

Completed in 46 milliseconds

12