Lines Matching refs:deviceDrmProperties
53 void testFilesExist (const VkPhysicalDeviceDrmPropertiesEXT& deviceDrmProperties) in testFilesExist() argument
55 bool primaryFound = !deviceDrmProperties.hasPrimary; in testFilesExist()
56 bool renderFound = !deviceDrmProperties.hasRender; in testFilesExist()
65 deviceDrmProperties.primaryMajor, in testFilesExist()
66 deviceDrmProperties.primaryMinor)) in testFilesExist()
69 deviceDrmProperties.renderMajor, in testFilesExist()
70 deviceDrmProperties.renderMinor)) in testFilesExist()
87 VkPhysicalDeviceDrmPropertiesEXT deviceDrmProperties; in testDeviceDrmProperties() local
89 deMemset(&deviceDrmProperties, 0, sizeof(deviceDrmProperties)); in testDeviceDrmProperties()
90 deviceDrmProperties.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DRM_PROPERTIES_EXT; in testDeviceDrmProperties()
91 deviceDrmProperties.pNext = DE_NULL; in testDeviceDrmProperties()
95 deviceProperties2.pNext = &deviceDrmProperties; in testDeviceDrmProperties()
101 case TEST_FILES_EXIST: testFilesExist (deviceDrmProperties); break; in testDeviceDrmProperties()