HomeSort by relevance Sort by last modified time
    Searched full:imagelayout (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationOperationSingleQueueTests.cpp 102 writeSync.imageLayout, readSync.imageLayout, m_resource->getImage().handle, m_resource->getImage().subresourceRange);
155 writeSync.imageLayout, readSync.imageLayout, m_resource->getImage().handle, m_resource->getImage().subresourceRange);
232 writeSync.imageLayout, readSync.imageLayout, m_resource->getImage().handle, m_resource->getImage().subresourceRange);
287 writeSync.imageLayout, readSync.imageLayout, m_resource->getImage().handle, m_resource->getImage().subresourceRange);
vktSynchronizationOperation.cpp 521 VK_IMAGE_LAYOUT_UNDEFINED, // VkImageLayout imageLayout;
636 VK_IMAGE_LAYOUT_UNDEFINED, // VkImageLayout imageLayout;
792 layout, // VkImageLayout imageLayout;
    [all...]
vktSynchronizationOperationMultiQueueTests.cpp 242 writeSync.imageLayout, readSync.imageLayout, resource.getImage().handle, resource.getImage().subresourceRange);
vktSynchronizationCrossInstanceSharingTests.cpp 701 writeSync.imageLayout,
702 readSync.imageLayout,
760 writeSync.imageLayout,
761 readSync.imageLayout,
    [all...]
vktSynchronizationOperation.hpp 200 vk::VkImageLayout imageLayout; // src (for reads) or dst (for writes) image layout
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawImageObjectUtil.cpp 401 vk::VkSubresourceLayout imageLayout;
402 deMemset(&imageLayout, 0, sizeof(imageLayout));
404 m_vk.getImageSubresourceLayout(m_device, object(), &imageSubResource, &imageLayout);
407 srcPtr += imageLayout.offset;
408 srcPtr += offset.z * imageLayout.depthPitch;
409 srcPtr += offset.y * imageLayout.rowPitch;
413 imageLayout.rowPitch, imageLayout.depthPitch, srcPtr, data);
768 vk::VkSubresourceLayout imageLayout;
    [all...]
  /device/google/contexthub/lib/include/nanohub/
nanohub.h 85 uint8_t payInfoType; // external: copy ImageLayout::payload; internal: LAYOUT_APP
148 struct ImageLayout {
161 struct ImageLayout layout;
  /external/vulkan-validation-layers/demos/
cube.cpp 74 vk::ImageLayout imageLayout;
253 .setOldLayout(vk::ImageLayout::ePresentSrcKHR)
254 .setNewLayout(vk::ImageLayout::ePresentSrcKHR)
523 .setOldLayout(vk::ImageLayout::ePresentSrcKHR)
524 .setNewLayout(vk::ImageLayout::eColorAttachmentOptimal)
573 .setOldLayout(vk::ImageLayout::ePresentSrcKHR)
574 .setNewLayout(vk::ImageLayout::ePresentSrcKHR)
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkTypeUtil.inl 244 inline VkDescriptorImageInfo makeDescriptorImageInfo (VkSampler sampler, VkImageView imageView, VkImageLayout imageLayout)
249 res.imageLayout = imageLayout;
vkDeviceDriverImpl.inl 515 void DeviceDriver::cmdClearColorImage (VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearColorValue* pColor, deUint32 rangeCount, const VkImageSubresourceRange* pRanges) const
517 m_vk.cmdClearColorImage(commandBuffer, image, imageLayout, pColor, rangeCount, pRanges);
520 void DeviceDriver::cmdClearDepthStencilImage (VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearDepthStencilValue* pDepthStencil, deUint32 rangeCount, const VkImageSubresourceRange* pRanges) const
522 m_vk.cmdClearDepthStencilImage(commandBuffer, image, imageLayout, pDepthStencil, rangeCount, pRanges);
    [all...]
vkConcreteDeviceInterface.inl 106 virtual void cmdClearColorImage (VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearColorValue* pColor, deUint32 rangeCount, const VkImageSubresourceRange* pRanges) const;
107 virtual void cmdClearDepthStencilImage (VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearDepthStencilValue* pDepthStencil, deUint32 rangeCount, const VkImageSubresourceRange* pRanges) const;
vkVirtualDeviceInterface.inl 106 virtual void cmdClearColorImage (VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearColorValue* pColor, deUint32 rangeCount, const VkImageSubresourceRange* pRanges) const = 0;
107 virtual void cmdClearDepthStencilImage (VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearDepthStencilValue* pDepthStencil, deUint32 rangeCount, const VkImageSubresourceRange* pRanges) const = 0;
vkNullDriverImpl.inl 807 VKAPI_ATTR void VKAPI_CALL cmdClearColorImage (VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearColorValue* pColor, deUint32 rangeCount, const VkImageSubresourceRange* pRanges)
811 DE_UNREF(imageLayout);
817 VKAPI_ATTR void VKAPI_CALL cmdClearDepthStencilImage (VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearDepthStencilValue* pDepthStencil, deUint32 rangeCount, const VkImageSubresourceRange* pRanges)
821 DE_UNREF(imageLayout);
    [all...]
  /external/vulkan-validation-layers/tests/
vkrenderframework.cpp 554 m_descriptorImageInfo.imageLayout = VK_IMAGE_LAYOUT_GENERAL;
595 if (image_layout == m_descriptorImageInfo.imageLayout) {
601 if (m_descriptorImageInfo.imageLayout == VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL)
609 if (m_descriptorImageInfo.imageLayout == VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL)
611 else if (m_descriptorImageInfo.imageLayout == VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL)
619 if (m_descriptorImageInfo.imageLayout == VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL)
627 if (m_descriptorImageInfo.imageLayout == VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL)
645 if (m_descriptorImageInfo.imageLayout == VK_IMAGE_LAYOUT_UNDEFINED)
649 m_descriptorImageInfo.imageLayout = image_layout;
655 if (image_layout == m_descriptorImageInfo.imageLayout) {
    [all...]
vkrenderframework.h 261 void layout(VkImageLayout layout) { m_descriptorImageInfo.imageLayout = layout; }
297 VkImageLayout layout() const { return m_descriptorImageInfo.imageLayout; }
  /external/vulkan-validation-layers/include/vulkan/
vulkan.hpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryPipelineBarrierTests.cpp     [all...]
  /external/mesa3d/src/amd/vulkan/
radv_meta_bufimage.c 914 .imageLayout = VK_IMAGE_LAYOUT_GENERAL,
    [all...]
radv_meta_resolve_cs.c 410 .imageLayout = VK_IMAGE_LAYOUT_GENERAL,
425 .imageLayout = VK_IMAGE_LAYOUT_GENERAL,
radv_meta_clear.c     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiImageClearingTests.cpp 737 VkImageLayout imageLayout;
740 imageLayout = VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL;
742 imageLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
753 imageLayout, // VkImageLayout initialLayout;
754 imageLayout, // VkImageLayout finalLayout;
765 imageLayout, // VkImageLayout layout;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/texture/
vktTextureTestUtil.cpp 571 const VkImageLayout imageLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
582 imageLayout, // VkImageLayout initialLayout;
583 imageLayout, // VkImageLayout finalLayout;
593 imageLayout, // VkImageLayout initialLayout;
594 imageLayout, // VkImageLayout finalLayout;
601 imageLayout, // VkImageLayout layout;
607 imageLayout, // VkImageLayout layout;
    [all...]
  /frameworks/native/vulkan/nulldrv/
null_driver_gen.h 150 VKAPI_ATTR void CmdClearColorImage(VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearColorValue* pColor, uint32_t rangeCount, const VkImageSubresourceRange* pRanges);
151 VKAPI_ATTR void CmdClearDepthStencilImage(VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearDepthStencilValue* pDepthStencil, uint32_t rangeCount, const VkImageSubresourceRange* pRanges);
  /device/google/contexthub/util/nanoapp_postprocess/
postprocess.c 252 .layout = (struct ImageLayout) {
585 .layout = (struct ImageLayout) {
616 .layout = (struct ImageLayout) {
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/common/
descriptor_sets.cpp     [all...]

Completed in 408 milliseconds

1 2 3 4 5