/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | VkDescriptorSetLayout.cpp | 349 vk::ImageView *imageView = vk::Cast(update->imageView); 350 Format format = imageView->getFormat(ImageView::SAMPLING); 364 const auto &extent = imageView->getMipLevelExtent(0); 366 sampledImage[i].imageViewId = imageView->id; 369 sampledImage[i].depth = imageView->getDepthOrLayerCount(0); 370 sampledImage[i].mipLevels = imageView->getSubresourceRange().levelCount; 371 sampledImage[i].sampleCount = imageView->getSampleCount(); 372 sampledImage[i].memoryOwner = imageView; 374 auto &subresourceRange = imageView 455 auto *imageView = vk::Cast(update->imageView); global() variable [all...] |
H A D | VkFramebuffer.cpp | 149 ImageView *imageView = attachments[attachmentIndex]; in clearAttachment() 153 imageView->clearWithLayerMask(attachment.clearValue, attachment.aspectMask, rect.rect, in clearAttachment() 158 imageView->clear(attachment.clearValue, attachment.aspectMask, rect); in clearAttachment() 169 ImageView *imageView = attachments[attachmentIndex]; in clearAttachment() 173 imageView->clearWithLayerMask(attachment.clearValue, attachment.aspectMask, rect.rect, in clearAttachment() 178 imageView->clear(attachment.clearValue, attachment.aspectMask, rect); in clearAttachment() 186 void Framebuffer::setAttachment(ImageView *imageView, uint32_t index) in setAttachment() argument 190 attachments[index] = imageView; in setAttachment() 208 ImageView *imageView = attachments[subpass.pColorAttachments[i].attachment]; local 211 imageView 228 ImageView *imageView = attachments[depthStencilAttachment]; global() local [all...] |
H A D | VkDevice.cpp | 424 void Device::registerImageView(ImageView *imageView) in registerImageView() argument 426 if(imageView != nullptr) in registerImageView() 429 imageViewSet.insert(imageView); in registerImageView() 433 void Device::unregisterImageView(ImageView *imageView) in unregisterImageView() argument 435 if(imageView != nullptr) in unregisterImageView() 438 auto it = imageViewSet.find(imageView); in unregisterImageView() 446 void Device::prepareForSampling(ImageView *imageView) in prepareForSampling() argument 448 if(imageView != nullptr) in prepareForSampling() 452 auto it = imageViewSet.find(imageView); in prepareForSampling() 455 imageView in prepareForSampling() 460 contentsChanged(ImageView *imageView, Image::ContentsChangedContext context) contentsChanged() argument [all...] |
H A D | VkDevice.hpp | 73 void registerImageView(ImageView *imageView); 74 void unregisterImageView(ImageView *imageView); 75 void prepareForSampling(ImageView *imageView); 76 void contentsChanged(ImageView *imageView, Image::ContentsChangedContext context); 90 uint32_t imageView; member 221 return instruction == rhs.instruction && sampler == rhs.sampler && imageView == rhs.imageView; in operator ==() 230 hash = (hash * 2642239) ^ key.imageView;
|
H A D | VkFramebuffer.hpp | 35 void setAttachment(ImageView *imageView, uint32_t index);
|
/third_party/mesa3d/src/virtio/venus-protocol/ |
H A D | vn_protocol_driver_image_view.h | 317 static inline size_t vn_sizeof_vkDestroyImageView(VkDevice device, VkImageView imageView, const VkAllocationCallbacks* pAllocator) in vn_sizeof_vkDestroyImageView() argument 324 cmd_size += vn_sizeof_VkImageView(&imageView); in vn_sizeof_vkDestroyImageView() 332 static inline void vn_encode_vkDestroyImageView(struct vn_cs_encoder *enc, VkCommandFlagsEXT cmd_flags, VkDevice device, VkImageView imageView, const VkAllocationCallbacks* pAllocator) in vn_encode_vkDestroyImageView() argument 340 vn_encode_VkImageView(enc, &imageView); in vn_encode_vkDestroyImageView() 345 static inline size_t vn_sizeof_vkDestroyImageView_reply(VkDevice device, VkImageView imageView, const VkAllocationCallbacks* pAllocator) in vn_sizeof_vkDestroyImageView_reply() argument 351 /* skip imageView */ in vn_sizeof_vkDestroyImageView_reply() 357 static inline void vn_decode_vkDestroyImageView_reply(struct vn_cs_decoder *dec, VkDevice device, VkImageView imageView, const VkAllocationCallbacks* pAllocator) in vn_decode_vkDestroyImageView_reply() argument 364 /* skip imageView */ in vn_decode_vkDestroyImageView_reply() 389 static inline void vn_submit_vkDestroyImageView(struct vn_instance *vn_instance, VkCommandFlagsEXT cmd_flags, VkDevice device, VkImageView imageView, const VkAllocationCallbacks* pAllocator, struct vn_instance_submit_command *submit) in vn_submit_vkDestroyImageView() argument 393 size_t cmd_size = vn_sizeof_vkDestroyImageView(device, imageView, pAllocato in vn_submit_vkDestroyImageView() 432 vn_call_vkDestroyImageView(struct vn_instance *vn_instance, VkDevice device, VkImageView imageView, const VkAllocationCallbacks* pAllocator) vn_call_vkDestroyImageView() argument 445 vn_async_vkDestroyImageView(struct vn_instance *vn_instance, VkDevice device, VkImageView imageView, const VkAllocationCallbacks* pAllocator) vn_async_vkDestroyImageView() argument [all...] |
/third_party/skia/src/gpu/vk/ |
H A D | GrVkImageView.h | 31 VkImageView imageView() const { return fImageView; } in imageView() function in GrVkImageView 41 GrVkImageView(const GrVkGpu* gpu, VkImageView imageView, in GrVkImageView() argument 43 : INHERITED(gpu), fImageView(imageView), fYcbcrConversion(ycbcrConversion) {} in GrVkImageView()
|
H A D | GrVkImageView.cpp | 47 VkImageView imageView; in Make() local 67 GR_VK_CALL_RESULT(gpu, err, CreateImageView(gpu->device(), &viewInfo, nullptr, &imageView)); in Make() 72 return sk_sp<const GrVkImageView>(new GrVkImageView(gpu, imageView, ycbcrConversion)); in Make()
|
H A D | GrVkFramebuffer.cpp | 29 attachments[0] = colorAttachment->framebufferView()->imageView(); in Make() 32 attachments[numAttachments++] = resolveAttachment->framebufferView()->imageView(); in Make() 35 attachments[numAttachments++] = stencilAttachment->framebufferView()->imageView(); in Make()
|
/third_party/skia/third_party/externals/swiftshader/tests/VulkanWrapper/ |
H A D | Image.hpp | 33 return imageView; in getImageView() 41 vk::ImageView imageView; // Owning handle member in Image
|
H A D | Image.cpp | 54 imageView = device.createImageView(imageViewInfo); in Image() 59 device.destroyImageView(imageView); in ~Image()
|
H A D | Swapchain.cpp | 65 for(auto &imageView : imageViews) in ~Swapchain() 67 device.destroyImageView(imageView, nullptr); in ~Swapchain()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
H A D | BindGroupVk.cpp | 104 writeImageInfo[numWrites].imageView = handle; in BindGroup() 127 writeImageInfo[numWrites].imageView = handle; in BindGroup() 145 writeImageInfo[numWrites].imageView = view->GetHandle(); in BindGroup()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | ProgramExecutableVk.cpp | 1515 const vk::ImageView *imageView = nullptr; in updateImagesDescriptorSet() local 1517 ANGLE_TRY(textureVk->getStorageImageView(contextVk, binding, &imageView)); in updateImagesDescriptorSet() 1522 imageInfos[arrayElement].imageView = imageView->getHandle(); in updateImagesDescriptorSet() 1632 const vk::ImageView *imageView = nullptr; in updateInputAttachmentDescriptorSet() local 1634 ANGLE_TRY(renderTargetVk->getImageView(contextVk, &imageView)); in updateInputAttachmentDescriptorSet() 1637 imageInfos[0].imageView = imageView->getHandle(); in updateInputAttachmentDescriptorSet() 1844 const vk::ImageView &imageView = textureVk->getFetchImageViewAndRecordUse( in updateTexturesDescriptorSet() local 1846 imageInfos[arrayElement].imageView in updateTexturesDescriptorSet() 1850 const vk::ImageView &imageView = textureVk->getReadImageViewAndRecordUse( updateTexturesDescriptorSet() local [all...] |
H A D | SurfaceVk.cpp | 1972 const vk::ImageView *imageView = nullptr; in getCurrentFramebuffer() local 1973 ANGLE_TRY(mDepthStencilRenderTarget.getImageView(contextVk, &imageView)); in getCurrentFramebuffer() 1974 imageViews[1] = imageView->getHandle(); in getCurrentFramebuffer() 1989 const vk::ImageView *imageView = nullptr; in getCurrentFramebuffer() local 1990 ANGLE_TRY(mColorRenderTarget.getImageView(contextVk, &imageView)); in getCurrentFramebuffer() 1991 imageViews[0] = imageView->getHandle(); in getCurrentFramebuffer() 1998 const vk::ImageView *imageView = nullptr; in getCurrentFramebuffer() local 2001 gl::SrgbWriteControlMode::Default, &imageView)); in getCurrentFramebuffer() 2003 imageViews[0] = imageView->getHandle(); in getCurrentFramebuffer() 2091 const vk::ImageView *imageView in drawOverlay() local [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
H A D | vktApiGranularityTests.cpp | 220 Move<VkImageView> imageView = createImageView(vk, device, &createInfo); in initImages() local 225 m_imageViews.push_back(VkImageViewSp(new Unique<VkImageView>(imageView))); in initImages() 337 depthAttachmentInfo.imageView = **m_imageViews[i]; in iterate() 344 stencilAttachmentInfo.imageView = **m_imageViews[i]; in iterate() 352 colorAttachmentInfo.back().imageView = **m_imageViews[i]; in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/renderpass/ |
H A D | vktDynamicRenderingUnusedAttachmentsTests.cpp | 269 imgView, // VkImageView imageView; in getRenderingAttachmentInfos() 283 VkRenderingAttachmentInfo getDepthAttachmentInfo (const VkImageView imageView) const in getDepthAttachmentInfo() 286 const auto attView = ((depthPresent && depthValidHandle) ? imageView : VK_NULL_HANDLE); in getDepthAttachmentInfo() 291 attView, // VkImageView imageView; in getDepthAttachmentInfo() 302 VkRenderingAttachmentInfo getStencilAttachmentInfo (const VkImageView imageView) const in getStencilAttachmentInfo() 305 const auto attView = ((stencilPresent && stencilValidHandle) ? imageView : VK_NULL_HANDLE); in getStencilAttachmentInfo() 310 attView, // VkImageView imageView; in getStencilAttachmentInfo() 608 if (renderingAttInfos[i].imageView == VK_NULL_HANDLE) in iterate() 614 if (depthAttachmentPtr.get() && depthAttachmentPtr->imageView == VK_NULL_HANDLE) in iterate() 617 if (stencilAttachmentPtr.get() && stencilAttachmentPtr->imageView in iterate() [all...] |
/third_party/mesa3d/src/vulkan/runtime/ |
H A D | vk_render_pass.c | 944 .imageView = VK_NULL_HANDLE, in vk_get_command_buffer_inheritance_as_rendering_resume() 952 .imageView = fb->attachments[sp_att->attachment], in vk_get_command_buffer_inheritance_as_rendering_resume() 971 .imageView = vk_image_view_to_handle(iview), in vk_get_command_buffer_inheritance_as_rendering_resume() 982 .imageView = vk_image_view_to_handle(iview), in vk_get_command_buffer_inheritance_as_rendering_resume() 998 .imageView = fb->attachments[sp_att->attachment], in vk_get_command_buffer_inheritance_as_rendering_resume() 1518 .imageView = vk_image_view_to_handle(att_state->image_view), in load_attachment() 1527 .imageView = vk_image_view_to_handle(att_state->image_view), in load_attachment() 1588 .imageView = VK_NULL_HANDLE, in begin_subpass() 1601 .imageView = vk_image_view_to_handle(att_state->image_view), in begin_subpass() 1706 depth_attachment.imageView in begin_subpass() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/video/ |
H A D | vktVideoFrameBuffer.hpp | 143 VkImageView imageView, in VkImageResourceView() 145 : m_refCount(0), m_vkDevCtx(vkDevCtx), m_imageResource(imageResource), m_imageView(imageView) in VkImageResourceView() 141 VkImageResourceView(DeviceContext& vkDevCtx, VkSharedBaseObj<VkImageResource>& imageResource, VkImageView imageView, VkImageSubresourceRange& ) VkImageResourceView() argument
|
/third_party/mesa3d/src/amd/vulkan/ |
H A D | radv_meta_decompress.c | 428 .imageView = radv_image_view_to_handle(&iview), in radv_process_depth_image_layer() 436 .imageView = radv_image_view_to_handle(&iview), in radv_process_depth_image_layer() 600 .imageView = radv_image_view_to_handle(&load_iview), in radv_expand_depth_stencil_compute() 612 .imageView = radv_image_view_to_handle(&store_iview), in radv_expand_depth_stencil_compute()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ycbcr/ |
H A D | vktYCbCrFormatTests.cpp | 178 VkImageView imageView) in createDescriptorSet() 199 imageView, in createDescriptorSet() 352 const Unique<VkImageView> imageView (createImageView(vkd, device, *image, format, *conversion, arrayLayers)); in testFormat() 429 const Unique<VkDescriptorSet> descSet (createDescriptorSet(vkd, device, *descPool, *descLayout, *imageView)); in testFormat() 174 createDescriptorSet(const DeviceInterface& vkd, VkDevice device, VkDescriptorPool descPool, VkDescriptorSetLayout descLayout, VkImageView imageView) createDescriptorSet() argument
|
H A D | vktYCbCrFilteringTests.cpp | 75 VkImageView imageView, 262 VkImageView imageView, in bindImage() 268 imageView, in bindImage() 330 const Unique<VkImageView> imageView (createImageView(samplerConvInfo, *testImage)); in iterate() 344 bindImage(*descSet, *imageView, *sampler); in iterate() 261 bindImage(VkDescriptorSet descriptorSet, VkImageView imageView, VkSampler sampler) bindImage() argument
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ycbcr/ |
H A D | vktYCbCrFormatTests.cpp | 178 VkImageView imageView) in createDescriptorSet() 199 imageView, in createDescriptorSet() 352 const Unique<VkImageView> imageView (createImageView(vkd, device, *image, format, *conversion, arrayLayers)); in testFormat() 429 const Unique<VkDescriptorSet> descSet (createDescriptorSet(vkd, device, *descPool, *descLayout, *imageView)); in testFormat() 174 createDescriptorSet(const DeviceInterface& vkd, VkDevice device, VkDescriptorPool descPool, VkDescriptorSetLayout descLayout, VkImageView imageView) createDescriptorSet() argument
|
H A D | vktYCbCrFilteringTests.cpp | 75 VkImageView imageView, 262 VkImageView imageView, in bindImage() 268 imageView, in bindImage() 330 const Unique<VkImageView> imageView (createImageView(samplerConvInfo, *testImage)); in iterate() 344 bindImage(*descSet, *imageView, *sampler); in iterate() 261 bindImage(VkDescriptorSet descriptorSet, VkImageView imageView, VkSampler sampler) bindImage() argument
|
/third_party/ffmpeg/libavfilter/ |
H A D | vf_avgblur_vulkan.c | 227 &s->input_images[i].imageView, in->img[i], in process_frames() 232 &s->tmp_images[i].imageView, tmp->img[i], in process_frames() 237 &s->output_images[i].imageView, out->img[i], in process_frames()
|