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