We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 334cdc1 commit ba99770Copy full SHA for ba99770
source/frontend/assets/js/website_feature_table.mjs
@@ -266,7 +266,13 @@ function SpliceReportByArchAndVendor(reportContainer) {
266
else if (vendorId.startsWith("Qualcomm")) {
267
268
if (/Snapdragon\(R\) X (Plus)|(Elite) - X1.*/.test(report.DXGI_ADAPTER_DESC3.Description))
269
+ {
270
arch = "X1";
271
+ }
272
+ if (/Qualcomm\(R\) Adreno\(TM\) X1.*/.test(report.DXGI_ADAPTER_DESC3.Description))
273
274
+ arch = "X1";
275
276
else if (report.DXGI_ADAPTER_DESC3.Description.includes("8cx")) {
277
arch = report.DXGI_ADAPTER_DESC3.Description.slice(report.DXGI_ADAPTER_DESC3.Description.search(/8cx.*/));
278
arch = arch.replace("Gen ", "");
0 commit comments