Home
last modified time | relevance | path

Searched refs:ycbcrConversion (Results 1 - 25 of 40) sorted by relevance

12

/third_party/mesa3d/src/virtio/venus-protocol/
H A Dvn_protocol_driver_sampler_ycbcr_conversion.h154 static inline size_t vn_sizeof_vkDestroySamplerYcbcrConversion(VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllocationCallbacks* pAllocator) in vn_sizeof_vkDestroySamplerYcbcrConversion() argument
161 cmd_size += vn_sizeof_VkSamplerYcbcrConversion(&ycbcrConversion); in vn_sizeof_vkDestroySamplerYcbcrConversion()
169 static inline void vn_encode_vkDestroySamplerYcbcrConversion(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllocationCallbacks* pAllocator) in vn_encode_vkDestroySamplerYcbcrConversion() argument
177 vn_encode_VkSamplerYcbcrConversion(enc, &ycbcrConversion); in vn_encode_vkDestroySamplerYcbcrConversion()
182 static inline size_t vn_sizeof_vkDestroySamplerYcbcrConversion_reply(VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllocationCallbacks* pAllocator) in vn_sizeof_vkDestroySamplerYcbcrConversion_reply() argument
188 /* skip ycbcrConversion */ in vn_sizeof_vkDestroySamplerYcbcrConversion_reply()
194 static inline void vn_decode_vkDestroySamplerYcbcrConversion_reply(struct vn_cs_decoder *dec, VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllocationCallbacks* pAllocator) in vn_decode_vkDestroySamplerYcbcrConversion_reply() argument
201 /* skip ycbcrConversion */ in vn_decode_vkDestroySamplerYcbcrConversion_reply()
226 static inline void vn_submit_vkDestroySamplerYcbcrConversion(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllocationCallbacks* pAllocator, struct vn_instance_submit_command *submit) in vn_submit_vkDestroySamplerYcbcrConversion() argument
230 size_t cmd_size = vn_sizeof_vkDestroySamplerYcbcrConversion(device, ycbcrConversion, pAllocato in vn_submit_vkDestroySamplerYcbcrConversion()
269 vn_call_vkDestroySamplerYcbcrConversion(struct vn_instance *vn_instance, VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllocationCallbacks* pAllocator) vn_call_vkDestroySamplerYcbcrConversion() argument
282 vn_async_vkDestroySamplerYcbcrConversion(struct vn_instance *vn_instance, VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllocationCallbacks* pAllocator) vn_async_vkDestroySamplerYcbcrConversion() argument
[all...]
/third_party/skia/src/gpu/
H A 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 in GetBackendFormat()
347 const GrVkYcbcrConversionInfo* ycbcrConversion = backendFormat.getVkYcbcrConversionInfo(); make_vk_backend_texture() local
[all...]
/third_party/skia/src/gpu/vk/
H A 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()
H A DGrVkSamplerYcbcrConversion.h24 VkSamplerYcbcrConversion ycbcrConversion() const { return fYcbcrConversion; } in ycbcrConversion() function in GrVkSamplerYcbcrConversion
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()
H A 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()
H A DGrVkImageView.h42 GrVkSamplerYcbcrConversion* ycbcrConversion) in GrVkImageView()
43 : INHERITED(gpu), fImageView(imageView), fYcbcrConversion(ycbcrConversion) {} in GrVkImageView()
41 GrVkImageView(const GrVkGpu* gpu, VkImageView imageView, GrVkSamplerYcbcrConversion* ycbcrConversion) GrVkImageView() argument
H A 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()
H A DGrVkSampler.h64 GrVkSamplerYcbcrConversion* ycbcrConversion, Key key) in GrVkSampler()
67 , fYcbcrConversion(ycbcrConversion) in GrVkSampler()
63 GrVkSampler(const GrVkGpu* gpu, VkSampler sampler, GrVkSamplerYcbcrConversion* ycbcrConversion, Key key) GrVkSampler() argument
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkSampler.cpp19 SamplerState::SamplerState(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()
H A DVkImageView.hpp90 ImageView(const VkImageViewCreateInfo *pCreateInfo, void *mem, const vk::SamplerYcbcrConversion *ycbcrConversion);
148 const vk::SamplerYcbcrConversion *ycbcrConversion = nullptr; member in vk::ImageView
H A DVkImageView.cpp122 ImageView::ImageView(const VkImageViewCreateInfo *pCreateInfo, void *mem, const vk::SamplerYcbcrConversion *ycbcrConversion) in ImageView() argument
128 , ycbcrConversion(ycbcrConversion) in ImageView()
H A DVkPromotedExtensions.cpp187 VKAPI_ATTR void VKAPI_CALL vkDestroySamplerYcbcrConversionKHR(VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllocationCallbacks *pAllocator) in vkDestroySamplerYcbcrConversionKHR() argument
189 vkDestroySamplerYcbcrConversion(device, ycbcrConversion, pAllocator); in vkDestroySamplerYcbcrConversionKHR()
H A DVkSampler.hpp29 SamplerState(const VkSamplerCreateInfo *pCreateInfo, const vk::SamplerYcbcrConversion *ycbcrConversion,
H A 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 VKAPI_ATTR void VKAPI_CALL vkDestroySamplerYcbcrConversion(VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllocationCallbacks *pAllocator) in vkDestroySamplerYcbcrConversion() argument
3722 TRACE("(VkDevice device = %p, VkSamplerYcbcrConversion ycbcrConversion = %p, const VkAllocationCallbacks* pAllocator = %p)", in vkDestroySamplerYcbcrConversion()
3723 device, static_cast<void *>(ycbcrConversion), pAllocato in vkDestroySamplerYcbcrConversion()
[all...]
/third_party/mesa3d/src/virtio/vulkan/
H A Dvn_image.c733 VkSamplerYcbcrConversion ycbcrConversion, in vn_DestroySamplerYcbcrConversion()
738 vn_sampler_ycbcr_conversion_from_handle(ycbcrConversion); in vn_DestroySamplerYcbcrConversion()
746 ycbcrConversion, NULL); in vn_DestroySamplerYcbcrConversion()
732 vn_DestroySamplerYcbcrConversion(VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllocationCallbacks *pAllocator) vn_DestroySamplerYcbcrConversion() argument
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sc/
H A DvktObjectRefreshTests.cpp184 vk::Move<vk::VkSamplerYcbcrConversion> ycbcrConversion = vk::createSamplerYcbcrConversion(vkd, device, &conversionInfo); 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/
H A DvktObjectRefreshTests.cpp184 vk::Move<vk::VkSamplerYcbcrConversion> ycbcrConversion = vk::createSamplerYcbcrConversion(vkd, device, &conversionInfo); in refreshObjects() local
284 { vk::VK_OBJECT_TYPE_SAMPLER_YCBCR_CONVERSION, ycbcrConversion.get().getInternal() }, in refreshObjects()
/third_party/mesa3d/src/panfrost/vulkan/
H A Dpanvk_descriptor_set.c363 VkSamplerYcbcrConversion ycbcrConversion, in panvk_DestroySamplerYcbcrConversion()
362 panvk_DestroySamplerYcbcrConversion(VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllocationCallbacks *pAllocator) panvk_DestroySamplerYcbcrConversion() argument
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkResourceInterface.hpp208 typedef VKAPI_ATTR void (VKAPI_CALL* DestroySamplerYcbcrConversionFunc) (VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllocationCallbacks* pAllocator);
/third_party/mesa3d/src/freedreno/vulkan/
H A Dtu_descriptor_set.c1351 VkSamplerYcbcrConversion ycbcrConversion, in tu_DestroySamplerYcbcrConversion()
1355 TU_FROM_HANDLE(tu_sampler_ycbcr_conversion, ycbcr_conversion, ycbcrConversion); in tu_DestroySamplerYcbcrConversion()
1350 tu_DestroySamplerYcbcrConversion(VkDevice _device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllocationCallbacks *pAllocator) tu_DestroySamplerYcbcrConversion() argument
/third_party/mesa3d/src/amd/vulkan/
H A 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/skia/third_party/externals/swiftshader/include/vulkan/
H A 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", deleter ); in createSamplerYcbcrConversionUnique()
6282 Device::destroySamplerYcbcrConversion( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion,
6288 static_cast<VkSamplerYcbcrConversion>( ycbcrConversion ),
6295 Device::destroySamplerYcbcrConversion( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion,
6302 static_cast<VkSamplerYcbcrConversion>( ycbcrConversion ),
14202 VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion; createSamplerYcbcrConversionKHR() local
14223 VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion; createSamplerYcbcrConversionKHRUnique() local
[all...]
/third_party/vulkan-headers/include/vulkan/
H A Dvulkan_funcs.hpp5961 VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion; in createSamplerYcbcrConversion() local
5966 reinterpret_cast<VkSamplerYcbcrConversion *>( &ycbcrConversion ) ) ); in createSamplerYcbcrConversion()
5969 return createResultValueType( result, ycbcrConversion ); in createSamplerYcbcrConversion()
5981 VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion; in createSamplerYcbcrConversionUnique() local
5986 reinterpret_cast<VkSamplerYcbcrConversion *>( &ycbcrConversion ) ) ); in createSamplerYcbcrConversionUnique()
5990 result, UniqueHandle<VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion, Dispatch>( ycbcrConversion, ObjectDestroy<Device, Dispatch>( *this, allocator, d ) ) ); in createSamplerYcbcrConversionUnique()
5996 VULKAN_HPP_INLINE void Device::destroySamplerYcbcrConversion( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion,
6002 m_device, static_cast<VkSamplerYcbcrConversion>( ycbcrConversion ), reinterpret_cast<const VkAllocationCallbacks *>( pAllocator ) );
6007 VULKAN_HPP_INLINE void Device::destroySamplerYcbcrConversion( VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion,
6015 static_cast<VkSamplerYcbcrConversion>( ycbcrConversion ),
15266 VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion; createSamplerYcbcrConversionKHR() local
15286 VULKAN_HPP_NAMESPACE::SamplerYcbcrConversion ycbcrConversion; createSamplerYcbcrConversionKHRUnique() local
[all...]
/third_party/vk-gl-cts/external/vulkancts/vkscserver/
H A DvksCacheBuilder.cpp38 typedef VKAPI_ATTR void (VKAPI_CALL* DestroySamplerYcbcrConversionFunc) (VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllocationCallbacks* pAllocator);
/third_party/mesa3d/src/gallium/frontends/lavapipe/
H A Dlvp_device.c2207 VkSamplerYcbcrConversion ycbcrConversion, in lvp_DestroySamplerYcbcrConversionKHR()
2205 lvp_DestroySamplerYcbcrConversionKHR( VkDevice device, VkSamplerYcbcrConversion ycbcrConversion, const VkAllocationCallbacks* pAllocator) lvp_DestroySamplerYcbcrConversionKHR() argument

Completed in 59 milliseconds

12