Lines Matching defs:context
190 DepthStencilResolveTest (Context& context, TestConfig config);
197 bool isSupportedFormat (Context& context, VkFormat format) const;
244 DepthStencilResolveTest::DepthStencilResolveTest (Context& context, TestConfig config)
245 : TestInstance (context)
248 , m_vki (context.getInstanceInterface())
249 , m_vkd (context.getDeviceInterface())
250 , m_device (context.getDevice())
251 , m_physicalDevice (context.getPhysicalDevice())
253 , m_commandPool (createCommandPool(context.getDeviceInterface(), context.getDevice(), VK_COMMAND_POOL_CREATE_TRANSIENT_BIT, context.getUniversalQueueFamilyIndex()))
617 // Note: we need the context because this is called from the constructor only after m_config has been set.
618 bool DepthStencilResolveTest::isSupportedFormat (Context& context, VkFormat format) const
625 const auto& vki = context.getInstanceInterface();
626 const auto physicalDevice = context.getPhysicalDevice();
1328 virtual TestInstance* createInstance (Context& context) const;
1329 virtual void checkSupport (Context& context) const;
1335 PropertiesTestInstance (Context& context)
1336 : vkt::TestInstance(context)
1344 TestInstance* PropertiesTestCase::createInstance (Context& context) const
1346 return new PropertiesTestInstance(context);
1349 void PropertiesTestCase::checkSupport (Context& context) const
1351 context.requireDeviceFunctionality("VK_KHR_depth_stencil_resolve");