Lines Matching refs:granularity
303 VkExtent2D granularity = { 0u, 0u };
389 vk.getRenderingAreaGranularityKHR(device, &renderingAreaInfo, &granularity);
400 vk.getRenderAreaGranularity(device, *m_renderPass, &granularity);
403 TCU_CHECK(granularity.width >= 1 && granularity.height >= 1);
404 TCU_CHECK(prePassGranularity.width == granularity.width && prePassGranularity.height == granularity.height);
405 TCU_CHECK(granularity.width <= m_context.getDeviceProperties().limits.maxFramebufferWidth && granularity.height <= m_context.getDeviceProperties().limits.maxFramebufferHeight);
417 log << tcu::TestLog::Message << "Horizontal granularity: " << granularity.width << " Vertical granularity: " << granularity.height << tcu::TestLog::EndMessage;
474 de::MovePtr<tcu::TestCaseGroup> group (new tcu::TestCaseGroup(testCtx, "granularity"));
476 // Single texture granularity tests.
478 de::MovePtr<tcu::TestCaseGroup> multi (new tcu::TestCaseGroup(testCtx, "multi", "Multiple textures with same format granularity tests."));
480 de::MovePtr<tcu::TestCaseGroup> inRenderPass (new tcu::TestCaseGroup(testCtx, "in_render_pass", "Single texture granularity tests, inside render pass"));
481 de::MovePtr<tcu::TestCaseGroup> inDynamicRenderPass (new tcu::TestCaseGroup(testCtx, "in_dynamic_render_pass", "Single texture granularity tests, inside dynamic render pass"));