Home
last modified time | relevance | path

Searched refs:vendorId (Results 1 – 25 of 59) sorted by relevance

123

/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
Ddriver_utils.h49 inline bool IsAMD(uint32_t vendorId) in IsAMD() argument
51 return vendorId == VENDOR_ID_AMD; in IsAMD()
54 inline bool IsApple(uint32_t vendorId) in IsApple() argument
56 return vendorId == VENDOR_ID_APPLE; in IsApple()
59 inline bool IsARM(uint32_t vendorId) in IsARM() argument
61 return vendorId == VENDOR_ID_ARM; in IsARM()
64 inline bool IsBroadcom(uint32_t vendorId) in IsBroadcom() argument
66 return vendorId == VENDOR_ID_BROADCOM; in IsBroadcom()
69 inline bool IsIntel(uint32_t vendorId) in IsIntel() argument
71 return vendorId == VENDOR_ID_INTEL; in IsIntel()
[all …]
/third_party/skia/third_party/externals/angle2/src/gpu_info_util/
DSystemInfo.cpp71 if (IsNVIDIA(gpu.vendorId)) in hasNVIDIAGPU()
83 if (IsIntel(gpu.vendorId)) in hasIntelGPU()
95 if (IsAMD(gpu.vendorId)) in hasAMDGPU()
103 bool IsAMD(VendorID vendorId) in IsAMD() argument
105 return vendorId == kVendorID_AMD; in IsAMD()
108 bool IsARM(VendorID vendorId) in IsARM() argument
110 return vendorId == kVendorID_ARM; in IsARM()
113 bool IsBroadcom(VendorID vendorId) in IsBroadcom() argument
115 return vendorId == kVendorID_Broadcom; in IsBroadcom()
118 bool IsImgTec(VendorID vendorId) in IsImgTec() argument
[all …]
DSystemInfo.h38 VendorID vendorId = 0; member
117 bool IsAMD(VendorID vendorId);
118 bool IsARM(VendorID vendorId);
119 bool IsBroadcom(VendorID vendorId);
120 bool IsImgTec(VendorID vendorId);
121 bool IsIntel(VendorID vendorId);
122 bool IsKazan(VendorID vendorId);
123 bool IsNVIDIA(VendorID vendorId);
124 bool IsQualcomm(VendorID vendorId);
125 bool IsGoogle(VendorID vendorId);
[all …]
DSystemInfo_linux.cpp101 if (IsAMD(gpu->vendorId)) in GetSystemInfo()
116 if (IsNVIDIA(gpu->vendorId)) in GetSystemInfo()
129 if (IsIntel(gpu->vendorId) && info->gpus.size() == 1) in GetSystemInfo()
135 nvidiaInfo.vendorId = kVendorID_NVIDIA; in GetSystemInfo()
DSystemInfo_macos.mm130 if (!GetEntryProperty(entry, CFSTR("vendor-id"), &info.vendorId))
202 if (info->gpus[i].vendorId == activeVendor && info->gpus[i].deviceId == activeDevice)
310 uint32_t vendorId;
311 if (!GetEntryProperty(deviceEntry, CFSTR("vendor-id"), &vendorId))
313 vendorId = 0;
318 return vendorId;
356 ((IsIntel(info->gpus[0].vendorId) && !IsIntel(info->gpus[1].vendorId)) ||
357 (!IsIntel(info->gpus[0].vendorId) && IsIntel(info->gpus[1].vendorId))))
/third_party/flutter/skia/third_party/externals/angle2/src/gpu_info_util/
DSystemInfo.cpp65 if (IsNVIDIA(gpu.vendorId)) in hasNVIDIAGPU()
77 if (IsIntel(gpu.vendorId)) in hasIntelGPU()
89 if (IsAMD(gpu.vendorId)) in hasAMDGPU()
97 bool IsAMD(VendorID vendorId) in IsAMD() argument
99 return vendorId == kVendorID_AMD; in IsAMD()
102 bool IsARM(VendorID vendorId) in IsARM() argument
104 return vendorId == kVendorID_ARM; in IsARM()
107 bool IsImgTec(VendorID vendorId) in IsImgTec() argument
109 return vendorId == kVendorID_ImgTec; in IsImgTec()
112 bool IsKazan(VendorID vendorId) in IsKazan() argument
[all …]
DSystemInfo.h37 VendorID vendorId = 0; member
100 bool IsAMD(VendorID vendorId);
101 bool IsARM(VendorID vendorId);
102 bool IsImgTec(VendorID vendorId);
103 bool IsIntel(VendorID vendorId);
104 bool IsKazan(VendorID vendorId);
105 bool IsNVIDIA(VendorID vendorId);
106 bool IsQualcomm(VendorID vendorId);
107 bool IsVeriSilicon(VendorID vendorId);
108 bool IsVMWare(VendorID vendorId);
[all …]
DSystemInfo_linux.cpp96 if (IsAMD(gpu->vendorId)) in GetSystemInfo()
111 if (IsNVIDIA(gpu->vendorId)) in GetSystemInfo()
124 if (IsIntel(gpu->vendorId) && info->gpus.size() == 1) in GetSystemInfo()
130 nvidiaInfo.vendorId = kVendorID_NVIDIA; in GetSystemInfo()
DSystemInfo_mac.mm96 GetEntryProperty(entry, CFSTR("vendor-id"), &info.vendorId) &&
139 ((IsIntel(info->gpus[0].vendorId) && !IsIntel(info->gpus[1].vendorId)) ||
140 (!IsIntel(info->gpus[0].vendorId) && IsIntel(info->gpus[1].vendorId))))
/third_party/skia/third_party/externals/dawn/src/common/
DGPUInfo.cpp54 bool IsAMD(PCIVendorID vendorId) { in IsAMD() argument
55 return vendorId == kVendorID_AMD; in IsAMD()
57 bool IsARM(PCIVendorID vendorId) { in IsARM() argument
58 return vendorId == kVendorID_ARM; in IsARM()
60 bool IsImgTec(PCIVendorID vendorId) { in IsImgTec() argument
61 return vendorId == kVendorID_ImgTec; in IsImgTec()
63 bool IsIntel(PCIVendorID vendorId) { in IsIntel() argument
64 return vendorId == kVendorID_Intel; in IsIntel()
66 bool IsNvidia(PCIVendorID vendorId) { in IsNvidia() argument
67 return vendorId == kVendorID_Nvidia; in IsNvidia()
[all …]
DGPUInfo.h38 bool IsAMD(PCIVendorID vendorId);
39 bool IsARM(PCIVendorID vendorId);
40 bool IsImgTec(PCIVendorID vendorId);
41 bool IsIntel(PCIVendorID vendorId);
42 bool IsNvidia(PCIVendorID vendorId);
43 bool IsQualcomm(PCIVendorID vendorId);
44 bool IsSwiftshader(PCIVendorID vendorId, PCIDeviceID deviceId);
45 bool IsWARP(PCIVendorID vendorId, PCIDeviceID deviceId);
54 int CompareD3DDriverVersion(PCIVendorID vendorId,
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/
Ddriver_utils.h38 inline bool IsAMD(uint32_t vendorId) in IsAMD() argument
40 return vendorId == VENDOR_ID_AMD; in IsAMD()
43 inline bool IsARM(uint32_t vendorId) in IsARM() argument
45 return vendorId == VENDOR_ID_ARM; in IsARM()
48 inline bool IsIntel(uint32_t vendorId) in IsIntel() argument
50 return vendorId == VENDOR_ID_INTEL; in IsIntel()
53 inline bool IsNvidia(uint32_t vendorId) in IsNvidia() argument
55 return vendorId == VENDOR_ID_NVIDIA; in IsNvidia()
58 inline bool IsQualcomm(uint32_t vendorId) in IsQualcomm() argument
60 return vendorId == VENDOR_ID_QUALCOMM; in IsQualcomm()
[all …]
Ddriver_utils.cpp124 const char *GetVendorString(uint32_t vendorId) in GetVendorString() argument
126 switch (vendorId) in GetVendorString()
140 ASSERT(vendorId == 0xba5eba11); // Mock vendor ID used for tests. in GetVendorString()
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/opengl/
DBackendGL.cpp29 uint32_t vendorId; member
40 uint32_t vendorId = 0; in GetVendorIdFromVendors() local
44 vendorId = it.vendorId; in GetVendorIdFromVendors()
48 return vendorId; in GetVendorIdFromVendors()
73 mPCIInfo.vendorId = GetVendorIdFromVendors(vendor); in Initialize()
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/metal/
DBackendMTL.mm28 uint32_t vendorId;
34 uint32_t vendorId;
45 uint32_t vendorId = 0;
49 vendorId = it.vendorId;
54 if (vendorId == 0) {
59 *ids = PCIIDs{vendorId, 0};
129 uint32_t vendorId = GetEntryProperty(deviceEntry, CFSTR("vendor-id"));
132 *ids = PCIIDs{vendorId, deviceId};
166 mPCIInfo.vendorId = ids.vendorId;
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/embedding/engine/systemchannels/
DKeyEventChannel.java61 message.put("vendorId", event.vendorId); in encodeKeyEvent()
79 public final int vendorId; field in KeyEventChannel.FlutterKeyEvent
128 this.vendorId = device.getVendorId(); in FlutterKeyEvent()
131 this.vendorId = 0; in FlutterKeyEvent()
135 this.vendorId = 0; in FlutterKeyEvent()
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
DBackendGL.cpp31 uint32_t vendorId; member
42 uint32_t vendorId = 0; in GetVendorIdFromVendors() local
46 vendorId = it.vendorId; in GetVendorIdFromVendors()
50 return vendorId; in GetVendorIdFromVendors()
193 mPCIInfo.vendorId = GetVendorIdFromVendors(vendor); in InitializeImpl()
/third_party/flutter/skia/third_party/externals/dawn/src/tests/
DDawnTest.cpp185 std::ostringstream vendorId; in SetUp() local
187 vendorId << std::setfill('0') << std::uppercase << std::internal << std::hex << std::setw(4) in SetUp()
188 << pci.vendorId; in SetUp()
195 std::cout << " vendorId: 0x" << vendorId.str() << ", deviceId: 0x" << deviceId.str() in SetUp()
196 << (mHasVendorIdFilter && mVendorIdFilter == pci.vendorId ? " [Selected]" : "") in SetUp()
273 return mPCIInfo.vendorId == kVendorID_AMD; in IsAMD()
277 return mPCIInfo.vendorId == kVendorID_ARM; in IsARM()
281 return mPCIInfo.vendorId == kVendorID_ImgTec; in IsImgTec()
285 return mPCIInfo.vendorId == kVendorID_Intel; in IsIntel()
289 return mPCIInfo.vendorId == kVendorID_Nvidia; in IsNvidia()
[all …]
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DAdapterVk.cpp69 mPCIInfo.vendorId = mDeviceInfo.properties.vendorID; in InitializeImpl()
275 uint32_t vendorId = mDeviceInfo.properties.vendorID; in InitializeSupportedLimitsImpl() local
276 if (!gpu_info::IsAMD(vendorId) && !gpu_info::IsIntel(vendorId) && in InitializeSupportedLimitsImpl()
277 !gpu_info::IsNvidia(vendorId)) { in InitializeSupportedLimitsImpl()
/third_party/vk-gl-cts/framework/common/
DtcuWaiverUtil.hpp38 SessionInfo (deUint32 vendorId,
73 deUint32 vendorId,
DtcuWaiverUtil.cpp37 SessionInfo::SessionInfo(deUint32 vendorId, in SessionInfo() argument
43 << "#sessionInfo vendorID 0x" << vendorId << "\n" in SessionInfo()
504 void WaiverUtil::setup(const std::string waiverFile, std::string packageName, deUint32 vendorId, de… in setup() argument
506 …VKWaiverTreeBuilder(waiverFile, packageName, vendorId, deviceId, sessionInfo, m_waiverTree).build(… in setup()
/third_party/skia/third_party/externals/dawn/src/dawn_native/metal/
DBackendMTL.mm39 uint32_t vendorId;
45 uint32_t vendorId;
57 uint32_t vendorId = 0;
61 vendorId = it.vendorId;
66 if (vendorId == 0) {
71 *ids = PCIIDs{vendorId, 0};
139 uint32_t vendorId = GetEntryProperty(deviceEntry.Get(), CFSTR("vendor-id"));
142 *ids = PCIIDs{vendorId, deviceId};
250 mPCIInfo.vendorId = ids.vendorId;
314 !(gpu_info::IsAMD(GetPCIInfo().vendorId) && IsMacOSVersionAtLeast(11));
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DAdapter.cpp33 mPCIInfo.name, mDriverDescription, mPCIInfo.vendorId, mPCIInfo.deviceId, mBackend, in Initialize()
39 mPCIInfo.name, mDriverDescription, mPCIInfo.vendorId, mPCIInfo.deviceId, mBackend, in Initialize()
113 adapterProperties.vendorID = mPCIInfo.vendorId; in GetAdapterProperties()
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
DEGLDisplayPowerPreferenceTest.cpp34 if (lowPower && IsIntel(mSystemInfo.gpus[i].vendorId)) in findGPU()
39 else if (!lowPower && !IsIntel(mSystemInfo.gpus[i].vendorId)) in findGPU()
55 if (rendererString.find(VendorName(mSystemInfo.gpus[i].vendorId)) != std::string::npos) in findActiveGPU()
/third_party/flutter/flutter/dev/manual_tests/lib/
Draw_keyboard.dart93 dataText.add(Text('vendorId: ${data.vendorId} (${_asHex(data.vendorId)})'));

123