/third_party/mesa3d/src/virtio/venus-protocol/ |
D | vn_protocol_driver_sampler_ycbcr_conversion.h | 154 …troySamplerYcbcrConversion(VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllo… in vn_sizeof_vkDestroySamplerYcbcrConversion() argument 161 cmd_size += vn_sizeof_VkSamplerYcbcrConversion(&ycbcrConversion); in vn_sizeof_vkDestroySamplerYcbcrConversion() 169 …CommandFlagsEXT cmd_flags, VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllo… in vn_encode_vkDestroySamplerYcbcrConversion() argument 177 vn_encode_VkSamplerYcbcrConversion(enc, &ycbcrConversion); in vn_encode_vkDestroySamplerYcbcrConversion() 182 …mplerYcbcrConversion_reply(VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllo… in vn_sizeof_vkDestroySamplerYcbcrConversion_reply() argument 194 …struct vn_cs_decoder *dec, VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllo… in vn_decode_vkDestroySamplerYcbcrConversion_reply() argument 226 …CommandFlagsEXT cmd_flags, VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllo… in vn_submit_vkDestroySamplerYcbcrConversion() argument 230 … size_t cmd_size = vn_sizeof_vkDestroySamplerYcbcrConversion(device, ycbcrConversion, pAllocator); in vn_submit_vkDestroySamplerYcbcrConversion() 236 …LY_BIT_EXT ? vn_sizeof_vkDestroySamplerYcbcrConversion_reply(device, ycbcrConversion, pAllocator) … in vn_submit_vkDestroySamplerYcbcrConversion() 240 … vn_encode_vkDestroySamplerYcbcrConversion(enc, cmd_flags, device, ycbcrConversion, pAllocator); in vn_submit_vkDestroySamplerYcbcrConversion() [all …]
|
/third_party/skia/src/gpu/ |
D | GrAHardwareBufferUtils.cpp | 134 GrVkYcbcrConversionInfo ycbcrConversion; in GetBackendFormat() local 135 ycbcrConversion.fYcbcrModel = hwbFormatProps.suggestedYcbcrModel; in GetBackendFormat() 136 ycbcrConversion.fYcbcrRange = hwbFormatProps.suggestedYcbcrRange; in GetBackendFormat() 137 ycbcrConversion.fXChromaOffset = hwbFormatProps.suggestedXChromaOffset; in GetBackendFormat() 138 ycbcrConversion.fYChromaOffset = hwbFormatProps.suggestedYChromaOffset; in GetBackendFormat() 139 ycbcrConversion.fForceExplicitReconstruction = VK_FALSE; in GetBackendFormat() 140 ycbcrConversion.fExternalFormat = hwbFormatProps.externalFormat; in GetBackendFormat() 141 ycbcrConversion.fFormatFeatures = hwbFormatProps.formatFeatures; in GetBackendFormat() 144 ycbcrConversion.fChromaFilter = VK_FILTER_LINEAR; in GetBackendFormat() 146 ycbcrConversion.fChromaFilter = VK_FILTER_NEAREST; in GetBackendFormat() [all …]
|
/third_party/skia/src/gpu/vk/ |
D | GrVkImageView.cpp | 21 GrVkSamplerYcbcrConversion* ycbcrConversion = nullptr; in Make() local 26 ycbcrConversion = in Make() 28 if (!ycbcrConversion) { in Make() 34 conversionInfo.conversion = ycbcrConversion->ycbcrConversion(); in Make() 72 return sk_sp<const GrVkImageView>(new GrVkImageView(gpu, imageView, ycbcrConversion)); in Make()
|
D | GrVkSampler.cpp | 80 GrVkSamplerYcbcrConversion* ycbcrConversion = nullptr; in Create() local 84 ycbcrConversion = in Create() 86 if (!ycbcrConversion) { in Create() 92 conversionInfo.conversion = ycbcrConversion->ycbcrConversion(); in Create() 119 ycbcrConversion->unref(); in Create() 123 return new GrVkSampler(gpu, sampler, ycbcrConversion, GenerateKey(samplerState, ycbcrInfo)); in Create()
|
D | GrVkSamplerYcbcrConversion.h | 24 VkSamplerYcbcrConversion ycbcrConversion() const { return fYcbcrConversion; } in ycbcrConversion() function 49 static const Key& GetKey(const GrVkSamplerYcbcrConversion& ycbcrConversion) { in GetKey() argument 50 return ycbcrConversion.fKey; in GetKey() 64 GrVkSamplerYcbcrConversion(const GrVkGpu* gpu, VkSamplerYcbcrConversion ycbcrConversion, in GrVkSamplerYcbcrConversion() argument 67 , fYcbcrConversion(ycbcrConversion) in GrVkSamplerYcbcrConversion()
|
D | GrVkResourceProvider.cpp | 242 GrVkSamplerYcbcrConversion* ycbcrConversion = in findOrCreateCompatibleSamplerYcbcrConversion() local 244 if (!ycbcrConversion) { in findOrCreateCompatibleSamplerYcbcrConversion() 245 ycbcrConversion = GrVkSamplerYcbcrConversion::Create(fGpu, ycbcrInfo); in findOrCreateCompatibleSamplerYcbcrConversion() 246 if (!ycbcrConversion) { in findOrCreateCompatibleSamplerYcbcrConversion() 249 fYcbcrConversions.add(ycbcrConversion); in findOrCreateCompatibleSamplerYcbcrConversion() 251 SkASSERT(ycbcrConversion); in findOrCreateCompatibleSamplerYcbcrConversion() 252 ycbcrConversion->ref(); in findOrCreateCompatibleSamplerYcbcrConversion() 253 return ycbcrConversion; in findOrCreateCompatibleSamplerYcbcrConversion()
|
D | GrVkImageView.h | 42 GrVkSamplerYcbcrConversion* ycbcrConversion) in GrVkImageView() argument 43 : INHERITED(gpu), fImageView(imageView), fYcbcrConversion(ycbcrConversion) {} in GrVkImageView()
|
D | GrVkSampler.h | 64 GrVkSamplerYcbcrConversion* ycbcrConversion, Key key) in GrVkSampler() argument 67 , fYcbcrConversion(ycbcrConversion) in GrVkSampler()
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
D | VkSampler.cpp | 19 …lerState(const VkSamplerCreateInfo *pCreateInfo, const vk::SamplerYcbcrConversion *ycbcrConversion, in SamplerState() argument 40 if(ycbcrConversion) in SamplerState() 42 ycbcrModel = ycbcrConversion->ycbcrModel; in SamplerState() 43 studioSwing = (ycbcrConversion->ycbcrRange == VK_SAMPLER_YCBCR_RANGE_ITU_NARROW); in SamplerState() 44 swappedChroma = (ycbcrConversion->components.r != VK_COMPONENT_SWIZZLE_R); in SamplerState()
|
D | VkImageView.hpp | 90 … VkImageViewCreateInfo *pCreateInfo, void *mem, const vk::SamplerYcbcrConversion *ycbcrConversion); 148 const vk::SamplerYcbcrConversion *ycbcrConversion = nullptr; member in vk::ImageView
|
D | VkImageView.cpp | 122 …t VkImageViewCreateInfo *pCreateInfo, void *mem, const vk::SamplerYcbcrConversion *ycbcrConversion) in ImageView() argument 128 , ycbcrConversion(ycbcrConversion) in ImageView()
|
D | VkPromotedExtensions.cpp | 187 …ySamplerYcbcrConversionKHR(VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllo… in vkDestroySamplerYcbcrConversionKHR() argument 189 vkDestroySamplerYcbcrConversion(device, ycbcrConversion, pAllocator); in vkDestroySamplerYcbcrConversionKHR()
|
D | VkSampler.hpp | 29 …lerState(const VkSamplerCreateInfo *pCreateInfo, const vk::SamplerYcbcrConversion *ycbcrConversion,
|
D | libVulkan.cpp | 1869 const vk::SamplerYcbcrConversion *ycbcrConversion = nullptr; in vkCreateImageView() local 1884 ycbcrConversion = vk::Cast(samplerYcbcrConversionInfo->conversion); in vkCreateImageView() 1886 if(ycbcrConversion) in vkCreateImageView() 1906 VkResult result = vk::ImageView::Create(pAllocator, pCreateInfo, pView, ycbcrConversion); in vkCreateImageView() 2156 const vk::SamplerYcbcrConversion *ycbcrConversion = nullptr; in vkCreateSampler() local 2168 ycbcrConversion = vk::Cast(samplerYcbcrConversionInfo->conversion); in vkCreateSampler() 2196 vk::SamplerState samplerState(pCreateInfo, ycbcrConversion, filteringPrecision, borderColor); in vkCreateSampler() 3720 …troySamplerYcbcrConversion(VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllo… in vkDestroySamplerYcbcrConversion() argument 3723 device, static_cast<void *>(ycbcrConversion), pAllocator); in vkDestroySamplerYcbcrConversion() 3725 vk::destroy(ycbcrConversion, pAllocator); in vkDestroySamplerYcbcrConversion()
|
/third_party/mesa3d/src/virtio/vulkan/ |
D | vn_image.c | 733 VkSamplerYcbcrConversion ycbcrConversion, in vn_DestroySamplerYcbcrConversion() argument 738 vn_sampler_ycbcr_conversion_from_handle(ycbcrConversion); in vn_DestroySamplerYcbcrConversion() 746 ycbcrConversion, NULL); in vn_DestroySamplerYcbcrConversion()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sc/ |
D | vktObjectRefreshTests.cpp | 184 …vk::Move<vk::VkSamplerYcbcrConversion> ycbcrConversion = vk::createSamplerYcbcrConversion(vkd, d… in refreshObjects() local 284 { vk::VK_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION, ycbcrConversion.get().getInternal() }, in refreshObjects()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sc/ |
D | vktObjectRefreshTests.cpp | 184 …vk::Move<vk::VkSamplerYcbcrConversion> ycbcrConversion = vk::createSamplerYcbcrConversion(vkd, d… in refreshObjects() local 284 { vk::VK_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION, ycbcrConversion.get().getInternal() }, in refreshObjects()
|
/third_party/mesa3d/src/panfrost/vulkan/ |
D | panvk_descriptor_set.c | 363 VkSamplerYcbcrConversion ycbcrConversion, in panvk_DestroySamplerYcbcrConversion() argument
|
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
D | vkResourceInterface.hpp | 208 …plerYcbcrConversionFunc) (VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllo…
|
/third_party/mesa3d/src/freedreno/vulkan/ |
D | tu_descriptor_set.c | 1351 VkSamplerYcbcrConversion ycbcrConversion, in tu_DestroySamplerYcbcrConversion() argument 1355 TU_FROM_HANDLE(tu_sampler_ycbcr_conversion, ycbcr_conversion, ycbcrConversion); in tu_DestroySamplerYcbcrConversion()
|
/third_party/skia/third_party/externals/swiftshader/include/vulkan/ |
D | vulkan_funcs.hpp | 6245 VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion; in createSamplerYcbcrConversion() local 6251 … reinterpret_cast<VkSamplerYcbcrConversion *>( &ycbcrConversion ) ) ); in createSamplerYcbcrConversion() 6253 … result, ycbcrConversion, VULKAN_HPP_NAMESPACE_STRING "::Device::createSamplerYcbcrConversion" ); in createSamplerYcbcrConversion() 6266 VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion; in createSamplerYcbcrConversionUnique() local 6272 … reinterpret_cast<VkSamplerYcbcrConversion *>( &ycbcrConversion ) ) ); in createSamplerYcbcrConversionUnique() 6275 …result, ycbcrConversion, VULKAN_HPP_NAMESPACE_STRING "::Device::createSamplerYcbcrConversionUnique… in createSamplerYcbcrConversionUnique() 6282 …::destroySamplerYcbcrConversion( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion, in destroySamplerYcbcrConversion() argument 6288 static_cast<VkSamplerYcbcrConversion>( ycbcrConversion ), in destroySamplerYcbcrConversion() 6295 …ySamplerYcbcrConversion( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion, in destroySamplerYcbcrConversion() argument 6302 static_cast<VkSamplerYcbcrConversion>( ycbcrConversion ), in destroySamplerYcbcrConversion() [all …]
|
/third_party/mesa3d/src/amd/vulkan/ |
D | radv_descriptor_set.c | 1665 radv_DestroySamplerYcbcrConversion(VkDevice _device, VkSamplerYcbcrConversion ycbcrConversion, in radv_DestroySamplerYcbcrConversion() argument 1669 RADV_FROM_HANDLE(radv_sampler_ycbcr_conversion, ycbcr_conversion, ycbcrConversion); in radv_DestroySamplerYcbcrConversion()
|
/third_party/vulkan-headers/include/vulkan/ |
D | vulkan_funcs.hpp | 5949 VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion; in createSamplerYcbcrConversion() local 5954 reinterpret_cast<VkSamplerYcbcrConversion *>( &ycbcrConversion ) ); in createSamplerYcbcrConversion() 5957 …turn createResultValueType( static_cast<VULKAN_HPP_NAMESPACE::Result>( result ), ycbcrConversion ); in createSamplerYcbcrConversion() 5969 VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion; in createSamplerYcbcrConversionUnique() local 5974 reinterpret_cast<VkSamplerYcbcrConversion *>( &ycbcrConversion ) ); in createSamplerYcbcrConversionUnique() 5979 …UniqueHandle<VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion, Dispatch>( ycbcrConversion, ObjectDestr… in createSamplerYcbcrConversionUnique() 5985 …::destroySamplerYcbcrConversion( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion, in destroySamplerYcbcrConversion() argument 5991 …m_device, static_cast<VkSamplerYcbcrConversion>( ycbcrConversion ), reinterpret_cast<const VkAlloc… in destroySamplerYcbcrConversion() 5996 …ySamplerYcbcrConversion( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion, in destroySamplerYcbcrConversion() argument 6004 static_cast<VkSamplerYcbcrConversion>( ycbcrConversion ), in destroySamplerYcbcrConversion() [all …]
|
/third_party/vk-gl-cts/external/vulkancts/vkscserver/ |
D | vksCacheBuilder.cpp | 38 …mplerYcbcrConversionFunc) (VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllo…
|
/third_party/vulkan-loader/loader/ |
D | trampoline.c | 2817 …API_CALL vkDestroySamplerYcbcrConversion(VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, in vkDestroySamplerYcbcrConversion() argument 2825 disp->DestroySamplerYcbcrConversion(device, ycbcrConversion, pAllocator); in vkDestroySamplerYcbcrConversion()
|