Skip to content

Commit

Permalink
WayVR: Add Navi33 GPU to the whitelist (7600xt)
Browse files Browse the repository at this point in the history
  • Loading branch information
olekolek1000 authored and galister committed Nov 5, 2024
1 parent ced7532 commit d212098
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/backend/wayvr/egl_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit d212098

Please sign in to comment.