Home | History | Annotate | Download | only in config

Lines Matching defs:driver_version

91       std::string driver_version(buffer);
93 return driver_version;
222 std::string driver_version;
225 driver_version = CollectDriverVersionATI();
226 if (!driver_version.empty()) {
228 gpu_info->driver_version = driver_version;
232 driver_version = CollectDriverVersionNVidia();
233 if (!driver_version.empty()) {
235 gpu_info->driver_version = driver_version;
242 driver_version = CollectDriverVersionNVidia();
243 if (!driver_version.empty()) {
245 gpu_info->driver_version = driver_version;
273 std::string driver_version = pieces[2];
274 size_t pos = driver_version.find_first_not_of("0123456789.");
278 driver_version = driver_version.substr(0, pos);
281 gpu_info->driver_version = driver_version;