/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/protected_memory/ |
H A D | vktProtectedMemContext.cpp | 35 , m_interface (m_context.getPlatformInterface()) in ProtectedContext() 45 , m_deviceDriver (m_context.getPlatformInterface(), m_instance, *m_device, m_context.getUsedApiVersion()) in ProtectedContext() 58 , m_interface (m_context.getPlatformInterface()) in ProtectedContext()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/protected_memory/ |
H A D | vktProtectedMemContext.cpp | 35 , m_interface (m_context.getPlatformInterface()) in ProtectedContext() 45 , m_deviceDriver (m_context.getPlatformInterface(), m_instance, *m_device) in ProtectedContext() 58 , m_interface (m_context.getPlatformInterface()) in ProtectedContext()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/postmortem/ |
H A D | vktPostmortemUtil.cpp | 80 return createCustomDevice(context.getTestContext().getCommandLine().isValidationEnabled(), context.getPlatformInterface(), in createPostmortemDevice() 87 m_deviceDriver(context.getPlatformInterface(), context.getInstance(), *m_logicalDevice, context.getUsedApiVersion()), in PostmortemTestInstance()
|
H A D | vktPostmortemDeviceFaultTests.cpp | 128 const PlatformInterface& platformInterface = context.getPlatformInterface(); in CustomDevice() 187 : InstanceDriver (ctx.getPlatformInterface(), ctx.getInstance()) in FakeInstanceInterface() 220 : DeviceDriver(ctx.getPlatformInterface(), ctx.getInstance(), ctx.getDevice(), ctx.getUsedApiVersion()) {} in FakeDeviceInterface()
|
H A D | vktPostmortemDeviceLossTests.cpp | 92 return createCustomDevice(context.getTestContext().getCommandLine().isValidationEnabled(), context.getPlatformInterface(), in createPostmortemDevice() 109 vk::DeviceDriver deviceDriver (m_context.getPlatformInterface(), m_context.getInstance(), *logicalDevice, m_context.getUsedApiVersion()); in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/postmortem/ |
H A D | vktPostmortemUtil.cpp | 80 return createCustomDevice(context.getTestContext().getCommandLine().isValidationEnabled(), context.getPlatformInterface(), in createPostmortemDevice() 87 m_deviceDriver(context.getPlatformInterface(), context.getInstance(), *m_logicalDevice), in PostmortemTestInstance()
|
H A D | vktPostmortemDeviceFaultTests.cpp | 128 const PlatformInterface& platformInterface = context.getPlatformInterface(); in CustomDevice() 187 : InstanceDriver (ctx.getPlatformInterface(), ctx.getInstance()) in FakeInstanceInterface() 220 : DeviceDriver(ctx.getPlatformInterface(), ctx.getInstance(), ctx.getDevice()) {} in FakeDeviceInterface()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ |
H A D | vktCustomInstancesDevices.cpp | 112 , m_driver (new InstanceDriver(context.getPlatformInterface(), *m_instance)) in CustomInstance() 115 , m_driver (new InstanceDriverSC(context.getPlatformInterface(), *m_instance, context.getTestContext().getCommandLine(), context.getResourceInterface())) in CustomInstance() 210 , m_driver((m_instance != DE_NULL) ? new InstanceDriver(context.getPlatformInterface(), m_instance) : nullptr) in UncheckedInstance() 213 , m_driver((m_instance != DE_NULL) ? new InstanceDriverSC(context.getPlatformInterface(), m_instance, context.getTestContext().getCommandLine(), context.getResourceInterface()) : nullptr) in UncheckedInstance() 284 enabledLayers = getValidationLayers(context.getPlatformInterface()); in createCustomInstanceWithExtensions() 292 const vk::PlatformInterface& vkp = context.getPlatformInterface(); in createCustomInstanceWithExtensions() 379 const vk::PlatformInterface& vkp = context.getPlatformInterface(); in createCustomInstanceFromInfo() 425 const vk::PlatformInterface& vkp = context.getPlatformInterface(); in createUncheckedInstance() 742 const vk::PlatformInterface& vkp = m_context.getPlatformInterface(); in createDeviceSupportingQueue()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ |
H A D | vktCustomInstancesDevices.cpp | 112 , m_driver (new InstanceDriver(context.getPlatformInterface(), *m_instance)) in CustomInstance() 115 , m_driver (new InstanceDriverSC(context.getPlatformInterface(), *m_instance, context.getTestContext().getCommandLine(), context.getResourceInterface())) in CustomInstance() 210 , m_driver((m_instance != DE_NULL) ? new InstanceDriver(context.getPlatformInterface(), m_instance) : nullptr) in UncheckedInstance() 213 , m_driver((m_instance != DE_NULL) ? new InstanceDriverSC(context.getPlatformInterface(), m_instance, context.getTestContext().getCommandLine(), context.getResourceInterface()) : nullptr) in UncheckedInstance() 283 enabledLayers = getValidationLayers(context.getPlatformInterface()); in createCustomInstanceWithExtensions() 291 const vk::PlatformInterface& vkp = context.getPlatformInterface(); in createCustomInstanceWithExtensions() 378 const vk::PlatformInterface& vkp = context.getPlatformInterface(); in createCustomInstanceFromInfo() 424 const vk::PlatformInterface& vkp = context.getPlatformInterface(); in createUncheckedInstance() 705 const vk::PlatformInterface& vkp = m_context.getPlatformInterface(); in createDeviceSupportingQueue()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sparse_resources/ |
H A D | vktSparseResourcesBase.cpp | 109 InstanceDriver instanceDriver(m_context.getPlatformInterface(), instance); in createDeviceSupportingQueues() 237 m_logicalDevice = createCustomDevice(m_context.getTestContext().getCommandLine().isValidationEnabled(), m_context.getPlatformInterface(), instance, instanceDriver, physicalDevice, &deviceInfo); in createDeviceSupportingQueues() 238 m_deviceDriver = de::MovePtr<DeviceDriver>(new DeviceDriver(m_context.getPlatformInterface(), instance, *m_logicalDevice, m_context.getUsedApiVersion())); in createDeviceSupportingQueues()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sparse_resources/ |
H A D | vktSparseResourcesBase.cpp | 105 InstanceDriver instanceDriver(m_context.getPlatformInterface(), instance); in createDeviceSupportingQueues() 207 m_logicalDevice = createCustomDevice(m_context.getTestContext().getCommandLine().isValidationEnabled(), m_context.getPlatformInterface(), instance, instanceDriver, physicalDevice, &deviceInfo); in createDeviceSupportingQueues() 208 m_deviceDriver = de::MovePtr<DeviceDriver>(new DeviceDriver(m_context.getPlatformInterface(), instance, *m_logicalDevice)); in createDeviceSupportingQueues()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/ |
H A D | vktApiExternalMemoryTests.cpp | 1051 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreWin32Create() 1122 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreImportTwice() 1174 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreImportReimport() 1225 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreSignalExportImportWait() 1263 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreExportSignalImportWait() 1300 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreExportImportSignalWait() 1335 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreSignalImport() 1387 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreSignalWaitImport() 1426 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreImportSyncFdSignaled() 1454 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreMultipleExports() [all...] |
H A D | vktApiDeviceInitializationTests.cpp | 219 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createInstanceWithInvalidApiVersionTest() 532 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createInstanceWithLayerNameAbuseTest() 643 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createDeviceTest() 708 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createMultipleDevicesTest() 810 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createDeviceWithUnsupportedExtensionsTest() 893 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createDeviceWithVariousQueueCountsTest() 986 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createDeviceWithGlobalPriorityTest() 1195 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createDeviceWithQueriedGlobalPriorityTest() 1316 const PlatformInterface& vkp = context.getPlatformInterface(); in createDeviceFeatures2Test() 1590 const PlatformInterface& vkp = context.getPlatformInterface(); in createDeviceWithUnsupportedFeaturesTest() [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sc/ |
H A D | vktApplicationParametersTests.cpp | 201 const std::vector<VkExtensionProperties> supportedExtensions = enumerateInstanceExtensionProperties(context.getPlatformInterface(), DE_NULL); in checkSupport() 215 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createDeviceTest() 293 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createInstanceTest()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sc/ |
H A D | vktApplicationParametersTests.cpp | 201 const std::vector<VkExtensionProperties> supportedExtensions = enumerateInstanceExtensionProperties(context.getPlatformInterface(), DE_NULL); in checkSupport() 215 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createDeviceTest() 293 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createInstanceTest()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/api/ |
H A D | vktApiExternalMemoryTests.cpp | 1039 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreWin32Create() 1110 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreImportTwice() 1162 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreImportReimport() 1213 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreSignalExportImportWait() 1251 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreExportSignalImportWait() 1288 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreExportImportSignalWait() 1323 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreSignalImport() 1375 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreSignalWaitImport() 1414 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreImportSyncFdSignaled() 1442 const vk::PlatformInterface& vkp (context.getPlatformInterface()); in testSemaphoreMultipleExports() [all...] |
H A D | vktApiDeviceInitializationTests.cpp | 219 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createInstanceWithInvalidApiVersionTest() 532 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createInstanceWithLayerNameAbuseTest() 643 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createDeviceTest() 708 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createMultipleDevicesTest() 810 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createDeviceWithUnsupportedExtensionsTest() 893 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createDeviceWithVariousQueueCountsTest() 986 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createDeviceWithGlobalPriorityTest() 1193 const PlatformInterface& platformInterface = context.getPlatformInterface(); in createDeviceWithQueriedGlobalPriorityTest() 1314 const PlatformInterface& vkp = context.getPlatformInterface(); in createDeviceFeatures2Test() 1601 const PlatformInterface& vkp = context.getPlatformInterface(); in createDeviceWithUnsupportedFeaturesTest() [all...] |
H A D | vktApiImageCompressionControlTests.cpp | 515 : supportedExtensions(enumerateInstanceExtensionProperties(context.getPlatformInterface(), DE_NULL)) in InstanceHelper() 523 : supportedExtensions(enumerateInstanceExtensionProperties(context.getPlatformInterface(), DE_NULL)) in InstanceHelper() 597 , device(createDeviceWithWsi(context.getPlatformInterface(), context.getUsedApiVersion(), instance, vki, in DeviceHelper() 601 , vkd(context.getPlatformInterface(), instance, *device) in DeviceHelper()
|
/third_party/vk-gl-cts/framework/platform/nullws/ |
H A D | tcuNullWSPlatform.hpp | 48 const vk::PlatformInterface& getPlatformInterface (void) const in getPlatformInterface() function in tcu::nullws::VulkanLibrary
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shader_object/ |
H A D | vktShaderObjectApiTests.cpp | 63 const vk::PlatformInterface& vkp = m_context.getPlatformInterface(); in iterate() 206 vk::InstanceDriver instanceDriver (m_context.getPlatformInterface(), instance); in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/vkscserver/ |
H A D | vksServices.cpp | 174 vkt::Context* context = new vkt::Context(*tcx, library->getPlatformInterface(), *collection, de::SharedPtr<vk::ResourceInterface>{resource}); in createServerVKSC() 178 library->getPlatformInterface(), in createServerVKSC()
|
/third_party/vk-gl-cts/framework/platform/fuchsia/ |
H A D | tcuFuchsiaPlatform.cpp | 33 const vk::PlatformInterface& getPlatformInterface() const { in getPlatformInterface() function in FuchsiaVkLibrary
|
/third_party/vk-gl-cts/framework/platform/osx/ |
H A D | tcuOSXVulkanPlatform.cpp | 94 const vk::PlatformInterface& getPlatformInterface (void) const in getPlatformInterface() function in tcu::osx::VulkanLibrary
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/ |
H A D | vktMemoryAllocationTests.cpp | 275 m_logicalDevice = createCustomDevice(m_context.getTestContext().getCommandLine().isValidationEnabled(), m_context.getPlatformInterface(), instance, instanceDriver, physicalDevice, &deviceInfo); in createTestDevice() 277 m_deviceDriver = de::MovePtr<DeviceDriver>(new DeviceDriver(m_context.getPlatformInterface(), instance, *m_logicalDevice, m_context.getUsedApiVersion())); in createTestDevice() 279 m_deviceDriver = de::MovePtr<DeviceDriverSC, DeinitDeviceDeleter>(new DeviceDriverSC(m_context.getPlatformInterface(), instance, *m_logicalDevice, m_context.getTestContext().getCommandLine(), m_context.getResourceInterface(), m_context.getDeviceVulkanSC10Properties(), m_context.getDeviceProperties(), m_context.getUsedApiVersion()), vk::DeinitDeviceDeleter(m_context.getResourceInterface().get(), *m_logicalDevice)); in createTestDevice() 343 m_logicalDevice = createCustomDevice(m_context.getTestContext().getCommandLine().isValidationEnabled(), m_context.getPlatformInterface(), instance, instanceDriver, deviceGroupInfo.pPhysicalDevices[physDeviceIdx], &deviceInfo); in createDeviceGroup() 345 m_deviceDriver = de::MovePtr<DeviceDriver>(new DeviceDriver(m_context.getPlatformInterface(), instance, *m_logicalDevice, m_context.getUsedApiVersion())); in createDeviceGroup() 347 m_deviceDriver = de::MovePtr<DeviceDriverSC, DeinitDeviceDeleter>(new DeviceDriverSC(m_context.getPlatformInterface(), instance, *m_logicalDevice, m_context.getTestContext().getCommandLine(), m_context.getResourceInterface(), m_context.getDeviceVulkanSC10Properties(), m_context.getDeviceProperties(), m_context.getUsedApiVersion()), vk::DeinitDeviceDeleter(m_context.getResourceInterface().get(), *m_logicalDevice)); in createDeviceGroup()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/ |
H A D | vktMemoryAllocationTests.cpp | 274 m_logicalDevice = createCustomDevice(m_context.getTestContext().getCommandLine().isValidationEnabled(), m_context.getPlatformInterface(), m_deviceGroupInstance, instanceDriver, physicalDevice, &deviceInfo); in createTestDevice() 276 m_deviceDriver = de::MovePtr<DeviceDriver>(new DeviceDriver(m_context.getPlatformInterface(), m_deviceGroupInstance, *m_logicalDevice)); in createTestDevice() 278 m_deviceDriver = de::MovePtr<DeviceDriverSC, DeinitDeviceDeleter>(new DeviceDriverSC(m_context.getPlatformInterface(), m_deviceGroupInstance, *m_logicalDevice, m_context.getTestContext().getCommandLine(), m_context.getResourceInterface(), m_context.getDeviceVulkanSC10Properties(), m_context.getDeviceProperties()), vk::DeinitDeviceDeleter(m_context.getResourceInterface().get(), *m_logicalDevice)); in createTestDevice() 343 m_logicalDevice = createCustomDevice(m_context.getTestContext().getCommandLine().isValidationEnabled(), m_context.getPlatformInterface(), m_deviceGroupInstance, instanceDriver, deviceGroupInfo.pPhysicalDevices[physDeviceIdx], &deviceInfo); in createDeviceGroup() 345 m_deviceDriver = de::MovePtr<DeviceDriver>(new DeviceDriver(m_context.getPlatformInterface(), m_deviceGroupInstance, *m_logicalDevice)); in createDeviceGroup() 347 m_deviceDriver = de::MovePtr<DeviceDriverSC, DeinitDeviceDeleter>(new DeviceDriverSC(m_context.getPlatformInterface(), m_deviceGroupInstance, *m_logicalDevice, m_context.getTestContext().getCommandLine(), m_context.getResourceInterface(), m_context.getDeviceVulkanSC10Properties(), m_context.getDeviceProperties()), vk::DeinitDeviceDeleter(m_context.getResourceInterface().get(), *m_logicalDevice)); in createDeviceGroup()
|