WayVR: Add Navi33 GPU to the whitelist (7600xt)

This commit is contained in:
Aleksander
2024-11-04 22:34:03 +01:00
committed by galister
parent ced753235e
commit d212098a98

View File

@@ -194,7 +194,10 @@ impl EGLData {
// It is not guaranteed that this modifier will be present in other models.
// If not, the full list of modifiers will be passed. Further testing is required.
// For now, it looks like only NAVI32-based gpus have this problem.
let mod_whitelist: [u64; 1] = [0x20000002086bf04 /* AMD RX 7800 XT */];
let mod_whitelist: [u64; 2] = [
0x20000002086bf04, /* AMD RX 7800 XT, Navi32 */
0x20000001866bf04, /* AMD RX 7600 XT, Navi33 */
];
for modifier in &mod_whitelist {
if mods.contains(modifier) {