Home
last modified time | relevance | path

Searched refs:detailedDriverVersion (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/gpu_info_util/
DSystemInfo_vulkan.cpp177 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
182 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
187 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
192 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
197 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
202 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
207 gpu.detailedDriverVersion.major = properties.driverVersion; in GetSystemInfoVulkanWithICD()
215 gpu.detailedDriverVersion.major = properties.driverVersion >> 22; in GetSystemInfoVulkanWithICD()
216 gpu.detailedDriverVersion.minor = (properties.driverVersion >> 14) & 0xFF; in GetSystemInfoVulkanWithICD()
217 gpu.detailedDriverVersion.subMinor = (properties.driverVersion >> 6) & 0xFF; in GetSystemInfoVulkanWithICD()
[all …]
DSystemInfo.h47 VersionInfo detailedDriverVersion; member
/third_party/skia/third_party/externals/angle2/src/tests/
Dangle_system_info_tests_main.cpp144 versionInfo.AddMember("major", gpu.detailedDriverVersion.major, allocator); in main()
145 versionInfo.AddMember("minor", gpu.detailedDriverVersion.minor, allocator); in main()
146 versionInfo.AddMember("subMinor", gpu.detailedDriverVersion.subMinor, allocator); in main()
147 versionInfo.AddMember("patch", gpu.detailedDriverVersion.patch, allocator); in main()
/third_party/skia/third_party/externals/angle2/src/feature_support_util/
Dfeature_support_util_unittest.cpp30 mSystemInfo.gpus[0].detailedDriverVersion = {1, 2, 3, 4}; in FeatureSupportUtilTest()
153 systemInfo.gpus[0].detailedDriverVersion = {1, 2, 3, 5}; in TEST_F()
Dfeature_support_util.cpp854 Version gpuDriverVersion(systemInfo->gpus[0].detailedDriverVersion.major, in ANGLEShouldBeUsedForApplication()
855 systemInfo->gpus[0].detailedDriverVersion.minor, in ANGLEShouldBeUsedForApplication()
856 systemInfo->gpus[0].detailedDriverVersion.subMinor, in ANGLEShouldBeUsedForApplication()
857 systemInfo->gpus[0].detailedDriverVersion.patch); in ANGLEShouldBeUsedForApplication()