Lines Matching full:gpus
54 // Gathers the vendor and device IDs for GPUs listed in the IORegistry.
158 if (info->gpus.size() < 2)
189 for (size_t i = 0; i < info->gpus.size(); ++i)
191 if (info->gpus[i].vendorId == activeVendor && info->gpus[i].deviceId == activeDevice)
326 GetIORegistryDevices(&info->gpus);
327 if (info->gpus.empty())
344 // offline renderers are allowed, and whether these two GPUs are really the
345 // integrated/discrete GPUs in a laptop.
346 if (info->gpus.size() == 2 &&
347 ((IsIntel(info->gpus[0].vendorId) && !IsIntel(info->gpus[1].vendorId)) ||
348 (!IsIntel(info->gpus[0].vendorId) && IsIntel(info->gpus[1].vendorId))))