Home
last modified time | relevance | path

Searched refs:ycbcrConversion (Results 1 – 25 of 48) sorted by relevance

12

/third_party/mesa3d/src/virtio/venus-protocol/
Dvn_protocol_driver_sampler_ycbcr_conversion.h154 …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/
DGrAHardwareBufferUtils.cpp134 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/
DGrVkImageView.cpp21 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()
DGrVkSampler.cpp80 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()
DGrVkSamplerYcbcrConversion.h24 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()
DGrVkResourceProvider.cpp242 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()
DGrVkImageView.h42 GrVkSamplerYcbcrConversion* ycbcrConversion) in GrVkImageView() argument
43 : INHERITED(gpu), fImageView(imageView), fYcbcrConversion(ycbcrConversion) {} in GrVkImageView()
DGrVkSampler.h64 GrVkSamplerYcbcrConversion* ycbcrConversion, Key key) in GrVkSampler() argument
67 , fYcbcrConversion(ycbcrConversion) in GrVkSampler()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
DVkSampler.cpp19 …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()
DVkImageView.hpp90 … VkImageViewCreateInfo *pCreateInfo, void *mem, const vk::SamplerYcbcrConversion *ycbcrConversion);
148 const vk::SamplerYcbcrConversion *ycbcrConversion = nullptr; member in vk::ImageView
DVkImageView.cpp122 …t VkImageViewCreateInfo *pCreateInfo, void *mem, const vk::SamplerYcbcrConversion *ycbcrConversion) in ImageView() argument
128 , ycbcrConversion(ycbcrConversion) in ImageView()
DVkPromotedExtensions.cpp187 …ySamplerYcbcrConversionKHR(VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllo… in vkDestroySamplerYcbcrConversionKHR() argument
189 vkDestroySamplerYcbcrConversion(device, ycbcrConversion, pAllocator); in vkDestroySamplerYcbcrConversionKHR()
DVkSampler.hpp29 …lerState(const VkSamplerCreateInfo *pCreateInfo, const vk::SamplerYcbcrConversion *ycbcrConversion,
DlibVulkan.cpp1869 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/
Dvn_image.c733 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/
DvktObjectRefreshTests.cpp184 …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/
DvktObjectRefreshTests.cpp184 …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/
Dpanvk_descriptor_set.c363 VkSamplerYcbcrConversion ycbcrConversion, in panvk_DestroySamplerYcbcrConversion() argument
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkResourceInterface.hpp208 …plerYcbcrConversionFunc) (VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllo…
/third_party/mesa3d/src/freedreno/vulkan/
Dtu_descriptor_set.c1351 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/
Dvulkan_funcs.hpp6245 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/
Dradv_descriptor_set.c1665 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/
Dvulkan_funcs.hpp5949 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/
DvksCacheBuilder.cpp38 …mplerYcbcrConversionFunc) (VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllo…
/third_party/vulkan-loader/loader/
Dtrampoline.c2817 …API_CALL vkDestroySamplerYcbcrConversion(VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, in vkDestroySamplerYcbcrConversion() argument
2825 disp->DestroySamplerYcbcrConversion(device, ycbcrConversion, pAllocator); in vkDestroySamplerYcbcrConversion()

12