gl_hud: Add freedreno detection

pull/1210/head
Ryan Houdek 4 months ago committed by flightlessmango
parent 38cec48f93
commit 511f4fc303

@ -139,6 +139,8 @@ void imgui_create(void *ctx, const gl_wsi plat)
} else if (vendor.find("Intel") != std::string::npos
|| deviceName.find("Intel") != std::string::npos) {
vendorID = 0x8086;
} else if (vendor.find("freedreno") != std::string::npos) {
vendorID = 0x5143;
} else {
vendorID = 0x10de;
}

Loading…
Cancel
Save