Home
last modified time | relevance | path

Searched refs:attachmentFormat (Results 1 – 14 of 14) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/vulkan-validation-layers/src/tests/
H A Dvklayertests_imageless_framebuffer.cpp358 VkFormat attachmentFormat = VK_FORMAT_R8G8B8A8_UNORM; in TEST_F() local
362 attachmentDescription.format = attachmentFormat; in TEST_F()
456 VkFormat attachmentFormat = VK_FORMAT_R8G8B8A8_UNORM; in TEST_F() local
460 attachmentDescription.format = attachmentFormat; in TEST_F()
525 attachmentFormat = VK_FORMAT_B8G8R8A8_UNORM; in TEST_F()
532 attachmentFormat = VK_FORMAT_R8G8B8A8_UNORM; in TEST_F()
535 attachmentFormat = VK_FORMAT_B8G8R8A8_UNORM; in TEST_F()
542 attachmentFormat = VK_FORMAT_R8G8B8A8_UNORM; in TEST_F()
992 if (attachmentFormat == VK_FORMAT_UNDEFINED) { in TEST_F()
1000 attachmentDescriptions[0].format = attachmentFormat; in TEST_F()
[all …]
H A Dvkpositivelayertests.cpp9410 VkFormat attachmentFormat = VK_FORMAT_R8G8B8A8_UNORM; in TEST_F() local
9411 …VkAttachmentDescription attachmentDescription[] = {{0, attachmentFormat, VK_SAMPLE_COUNT_1_BIT, VK… in TEST_F()
9431 attachmentFormat, in TEST_F()
9476 VkImageView imageView = image.targetView(attachmentFormat); in TEST_F()
9485 &attachmentFormat}; in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineEarlyDestroyTests.cpp234 const VkFormat attachmentFormat = VK_FORMAT_R8G8B8A8_UNORM; in testEarlyDestroy() local
235 const tcu::TextureFormat textureFormat = mapVkFormat(attachmentFormat); in testEarlyDestroy()
243 attachmentFormat, // VkFormat format; in testEarlyDestroy()
259 …akeImageView(vk, vkDevice, *attachmentImage, VK_IMAGE_VIEW_TYPE_2D, attachmentFormat, colorSubreso… in testEarlyDestroy()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/dawn/src/tests/unittests/validation/
H A DValidationTest.cpp116 : attachmentFormat(wgpu::TextureFormat::RGBA8Unorm), width(400), height(400) { in DummyRenderPass()
123 descriptor.format = attachmentFormat; in DummyRenderPass()
H A DRenderBundleValidationTests.cpp127 desc.cColorFormats[0] = renderPass.attachmentFormat; in TEST_F()
156 desc.cColorFormats[0] = renderPass.attachmentFormat; in TEST_F()
179 desc.cColorFormats[0] = renderPass.attachmentFormat; in TEST_F()
238 desc.cColorFormats[0] = renderPass.attachmentFormat; in TEST_F()
323 desc.cColorFormats[0] = renderPass.attachmentFormat; in TEST_F()
408 desc.cColorFormats[0] = renderPass.attachmentFormat; in TEST_F()
500 desc.cColorFormats[0] = renderPass.attachmentFormat; in TEST_F()
533 desc.cColorFormats[0] = renderPass.attachmentFormat; in TEST_F()
608 desc.cColorFormats[0] = renderPass.attachmentFormat; in TEST_F()
H A DValidationTest.h70 wgpu::TextureFormat attachmentFormat; member
H A DUnsafeAPIValidationTests.cpp48 bundleDesc.cColorFormats[0] = renderPass.attachmentFormat; in TEST_F()
/dports/graphics/vulkan-validation-layers/Vulkan-ValidationLayers-1.2.203/tests/
H A Dvklayertests_imageless_framebuffer.cpp400 VkFormat attachmentFormat = VK_FORMAT_R8G8B8A8_UNORM; in TEST_F() local
404 attachmentDescription.format = attachmentFormat; in TEST_F()
498 VkFormat attachmentFormat = VK_FORMAT_R8G8B8A8_UNORM; in TEST_F() local
502 attachmentDescription.format = attachmentFormat; in TEST_F()
567 attachmentFormat = VK_FORMAT_B8G8R8A8_UNORM; in TEST_F()
574 attachmentFormat = VK_FORMAT_R8G8B8A8_UNORM; in TEST_F()
577 attachmentFormat = VK_FORMAT_B8G8R8A8_UNORM; in TEST_F()
584 attachmentFormat = VK_FORMAT_R8G8B8A8_UNORM; in TEST_F()
1034 if (attachmentFormat == VK_FORMAT_UNDEFINED) { in TEST_F()
1042 attachmentDescriptions[0].format = attachmentFormat; in TEST_F()
[all …]
H A Dvklayertests_descriptor_renderpass_framebuffer.cpp9535 VkFormat attachmentFormat = FindSupportedDepthStencilFormat(gpu()); in TEST_F() local
9536 if (attachmentFormat == VK_FORMAT_UNDEFINED) { in TEST_F()
9544 attachmentDescriptions[0].format = attachmentFormat; in TEST_F()
9549 attachmentDescriptions[1].format = attachmentFormat; in TEST_F()
9589 image_create_info.format = attachmentFormat; in TEST_F()
9610 image_views[0] = ds_image.targetView(attachmentFormat, VK_IMAGE_ASPECT_DEPTH_BIT); in TEST_F()
9611 image_views[1] = ds_resolve_image.targetView(attachmentFormat, VK_IMAGE_ASPECT_DEPTH_BIT); in TEST_F()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/dawn/src/dawn_native/opengl/
H A DCommandBufferGL.cpp829 const Format& attachmentFormat = attachmentInfo->view->GetTexture()->GetFormat(); in ExecuteRenderPass() local
832 bool doDepthClear = attachmentFormat.HasDepth() && in ExecuteRenderPass()
834 bool doStencilClear = attachmentFormat.HasStencil() && in ExecuteRenderPass()
841 gl.StencilMask(GetStencilMaskFromStencilFormat(attachmentFormat.format)); in ExecuteRenderPass()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/dawn/src/dawn_native/opengl/
H A DCommandBufferGL.cpp983 const Format& attachmentFormat = attachmentInfo->view->GetTexture()->GetFormat(); in ExecuteRenderPass() local
986 bool doDepthClear = attachmentFormat.HasDepth() && in ExecuteRenderPass()
988 bool doStencilClear = attachmentFormat.HasStencil() && in ExecuteRenderPass()
995 gl.StencilMask(GetStencilMaskFromStencilFormat(attachmentFormat.format)); in ExecuteRenderPass()
/dports/graphics/vulkan-validation-layers/Vulkan-ValidationLayers-1.2.203/tests/positive/
H A Dimage_buffer.cpp2383 VkFormat attachmentFormat = m_surface_formats[0].format; in TEST_F() local
2384 …VkAttachmentDescription attachmentDescription[] = {{0, attachmentFormat, VK_SAMPLE_COUNT_1_BIT, VK… in TEST_F()
2404 attachmentFormat, in TEST_F()
2449 VkImageView imageView = image.targetView(attachmentFormat); in TEST_F()
2458 &attachmentFormat}; in TEST_F()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/framework/opengl/simplereference/
H A DsglrReferenceContext.cpp2177 tcu::TextureFormat attachmentFormat; in checkFramebufferStatus() local
2234 attachmentFormat = level.getFormat(); in checkFramebufferStatus()
2243 attachmentFormat = renderbuffer->getFormat(); in checkFramebufferStatus()
2261 switch (attachmentFormat.order) in checkFramebufferStatus()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/external/vulkancts/modules/vulkan/subgroups/
H A DvktSubgroupsTestsUtils.cpp504 const vk::VkFormat attachmentFormat = VK_FORMAT_R32G32B32A32_SFLOAT, in makeGraphicsPipeline() argument
526 const deUint32 numChannels = getNumUsedChannels(mapVkFormat(attachmentFormat).order); in makeGraphicsPipeline()