Home
last modified time | relevance | path

Searched refs:platformInterface (Results 1 – 8 of 8) sorted by relevance

/external/deqp/external/vulkancts/framework/vulkan/
DvkPlatform.cpp43 InstanceDriver::InstanceDriver (const PlatformInterface& platformInterface, VkInstance instance) in InstanceDriver() argument
45 loadFunctions(platformInterface, instance); in InstanceDriver()
48 void InstanceDriver::loadFunctions (const PlatformInterface& platformInterface, VkInstance instance) in loadFunctions() argument
50 #define GET_PROC_ADDR(NAME) platformInterface.getInstanceProcAddr(instance, NAME) in loadFunctions()
59 DeviceDriver::DeviceDriver(const PlatformInterface& platformInterface, VkInstance instance, VkDevic… in DeviceDriver() argument
61 …m_vk.getDeviceProcAddr = (GetDeviceProcAddrFunc)platformInterface.getInstanceProcAddr(instance, "v… in DeviceDriver()
DvkPlatform.hpp72 InstanceDriver (const PlatformInterface& platformInterface, VkInstance instance);
78 void loadFunctions (const PlatformInterface& platformInterface, VkInstance instance);
91 DeviceDriver (const PlatformInterface& platformInterface, VkInstance instance, VkDevice device);
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiDeviceInitializationTests.cpp212 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createInstanceWithInvalidApiVersionTest() local
215 platformInterface.enumerateInstanceVersion(&instanceApiVersion); in createInstanceWithInvalidApiVersionTest()
502 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createInstanceWithLayerNameAbuseTest() local
537 …const VkResult result = platformInterface.createInstance(&instanceCreateInfo, DE_NULL/*pAllocator… in createInstanceWithLayerNameAbuseTest()
542 const InstanceDriver instanceIface(platformInterface, instance); in createInstanceWithLayerNameAbuseTest()
613 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createDeviceTest() local
648 …ce(context.getTestContext().getCommandLine().isValidationEnabled(), platformInterface, instance, i… in createDeviceTest()
649 const DeviceDriver deviceDriver (platformInterface, instance, device.get()); in createDeviceTest()
662 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createMultipleDevicesTest() local
710 const DeviceDriver deviceDriver (platformInterface, instance, devices[deviceNdx]); in createMultipleDevicesTest()
[all …]
DvktApiFeatureInfo.cpp1515 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createTestDevice() local
1517 …const Unique<VkInstance> instance (createDefaultInstance(platformInterface, context.getUsedA… in createTestDevice()
1518 const InstanceDriver instanceDriver (platformInterface, instance.get()); in createTestDevice()
1547 …const Unique<VkDevice> device (createCustomDevice(validationEnabled, platformInterface, *i… in createTestDevice()
1548 const DeviceDriver deviceDriver (platformInterface, instance.get(), device.get()); in createTestDevice()
/external/deqp/external/vulkancts/modules/vulkan/
DvktTestCase.hpp59 const vk::PlatformInterface& platformInterface,
DvktTestCase.cpp452 const vk::PlatformInterface& platformInterface, in Context() argument
455 , m_platformInterface (platformInterface) in Context()
/external/deqp/external/vulkancts/modules/vulkan/subgroups/
DvktSubgroupsTestsUtils.cpp1613 const PlatformInterface& platformInterface = context.getPlatformInterface(); in is16BitUBOStorageSupported() local
1615 const InstanceDriver instanceDriver(platformInterface, instance); in is16BitUBOStorageSupported()
1635 const PlatformInterface& platformInterface = context.getPlatformInterface(); in is8BitUBOStorageSupported() local
1637 const InstanceDriver instanceDriver(platformInterface, instance); in is8BitUBOStorageSupported()
1695 const PlatformInterface& platformInterface = context.getPlatformInterface(); in isFormatSupportedForDevice() local
1697 const InstanceDriver instanceDriver (platformInterface, instance); in isFormatSupportedForDevice()
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationSmokeTests.cpp1101 const PlatformInterface& platformInterface = context.getPlatformInterface(); in testSemaphores() local
1107 const DeviceDriver deviceInterface (platformInterface, context.getInstance(), *device); in testSemaphores()