| /external/deqp/external/vulkancts/modules/vulkan/draw/ | 
| vktDrawImageObjectUtil.cpp | 407 	vk::VkSubresourceLayout imageLayout; 409 	deMemset(&imageLayout, 0, sizeof(imageLayout));
 410 	m_vk.getImageSubresourceLayout(m_device, object(), &imageSubResource, &imageLayout);
 413 	srcPtr += imageLayout.offset + getPixelOffset(offset, imageLayout.rowPitch, imageLayout.depthPitch, mipLevel, arrayElement);
 416 		imageLayout.rowPitch, imageLayout.depthPitch, srcPtr, data);
 796 	vk::VkSubresourceLayout imageLayout;
 [all...]
 | 
| /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/ | 
| vktDynamicStateImageObjectUtil.cpp | 407 	vk::VkSubresourceLayout imageLayout; 408 	deMemset(&imageLayout, 0, sizeof(imageLayout));
 410 	m_vk.getImageSubresourceLayout(m_device, object(), &imageSubResource, &imageLayout);
 413 	srcPtr += imageLayout.offset + getPixelOffset(offset, imageLayout.rowPitch, imageLayout.depthPitch, mipLevel, arrayElement);
 416 		imageLayout.rowPitch, imageLayout.depthPitch, srcPtr, data);
 796 	vk::VkSubresourceLayout imageLayout;
 [all...]
 | 
| /external/deqp/external/vulkancts/modules/vulkan/query_pool/ | 
| vktQueryPoolImageObjectUtil.cpp | 384 	vk::VkSubresourceLayout imageLayout; 385 	deMemset(&imageLayout, 0, sizeof(imageLayout));
 387 	m_vk.getImageSubresourceLayout(m_device, object(), &imageSubResource, &imageLayout);
 390 	srcPtr += imageLayout.offset + getPixelOffset(offset, imageLayout.rowPitch, imageLayout.depthPitch, mipLevel, arrayElement);
 393 		imageLayout.rowPitch, imageLayout.depthPitch, srcPtr, data);
 774 	vk::VkSubresourceLayout imageLayout;
 [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);
 
 | 
| 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 | 826 VKAPI_ATTR void VKAPI_CALL cmdClearColorImage (VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearColorValue* pColor, deUint32 rangeCount, const VkImageSubresourceRange* pRanges) 830 	DE_UNREF(imageLayout);
 836 VKAPI_ATTR void VKAPI_CALL cmdClearDepthStencilImage (VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearDepthStencilValue* pDepthStencil, deUint32 rangeCount, const VkImageSubresourceRange* pRanges)
 840 	DE_UNREF(imageLayout);
 [all...]
 | 
| vkFunctionPointerTypes.inl | 123 typedef VKAPI_ATTR void					(VKAPI_CALL* CmdClearColorImageFunc)								(VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearColorValue* pColor, deUint32 rangeCount, const VkImageSubresourceRange* pRanges); 124 typedef VKAPI_ATTR void					(VKAPI_CALL* CmdClearDepthStencilImageFunc)							(VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearDepthStencilValue* pDepthStencil, deUint32 rangeCount, const VkImageSubresourceRange* pRanges);
 
 | 
| /external/vulkan-validation-layers/tests/ | 
| vkrenderframework.cpp | 544     m_descriptorImageInfo.imageLayout = VK_IMAGE_LAYOUT_GENERAL; 598     if (image_layout == m_descriptorImageInfo.imageLayout) {
 604         if (m_descriptorImageInfo.imageLayout ==
 613         if (m_descriptorImageInfo.imageLayout ==
 616         else if (m_descriptorImageInfo.imageLayout ==
 625         if (m_descriptorImageInfo.imageLayout ==
 634         if (m_descriptorImageInfo.imageLayout ==
 649     m_descriptorImageInfo.imageLayout = image_layout;
 656     if (image_layout == m_descriptorImageInfo.imageLayout) {
 735         newLayout = m_descriptorImageInfo.imageLayout;
 [all...]
 | 
| vkrenderframework.h | 297         m_descriptorImageInfo.imageLayout = layout; 337     VkImageLayout layout() const { return m_descriptorImageInfo.imageLayout; }
 
 | 
| /external/deqp/external/vulkancts/modules/vulkan/memory/ | 
| vktMemoryPipelineBarrierTests.cpp | [all...] | 
| /external/vulkan-validation-layers/layers/ | 
| image.cpp | [all...] | 
| parameter_validation.cpp | [all...] | 
| /external/vulkan-validation-layers/demos/ | 
| cube.c | 110     VkImageLayout imageLayout; [all...]
 | 
| tri.c | 108     VkImageLayout imageLayout; 884     tex_obj->imageLayout = VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL
 [all...]
 | 
| /frameworks/native/vulkan/libvulkan/ | 
| api_gen.cpp | 399 VKAPI_ATTR void CmdClearColorImage(VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearColorValue* pColor, uint32_t rangeCount, const VkImageSubresourceRange* pRanges); 400 VKAPI_ATTR void CmdClearDepthStencilImage(VkCommandBuffer commandBuffer, VkImage image, VkImageLayout imageLayout, const VkClearDepthStencilValue* pDepthStencil, uint32_t rangeCount, const VkImageSubresourceRange* pRanges);
 [all...]
 | 
| /external/skia/src/gpu/vk/ | 
| GrVkProgram.cpp | 293         imageInfo.imageLayout = VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL; 
 | 
| /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);
 
 | 
| null_driver.cpp | [all...] | 
| /external/vulkan-validation-layers/loader/ | 
| trampoline.c | [all...] | 
| /external/skia/third_party/vulkan/ | 
| vulkan.h | [all...] | 
| /external/vulkan-validation-layers/include/vulkan/ | 
| vulkan.h | [all...] | 
| /frameworks/native/vulkan/include/vulkan/ | 
| vulkan.h | [all...] | 
| /prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/vulkan/ | 
| vulkan.h | [all...] |