Skip to content

Commit

Permalink
Add Quest3S support
Browse files Browse the repository at this point in the history
We can reuse the Quest3 infra because the controllers are almost
the same (if not identical) so there is no need to add a new
device type, controller 3D models, etc...

Fixes Igalia#1611

(haven't actually tried on a device but quite confident it works)
  • Loading branch information
svillar committed Nov 18, 2024
1 parent 86abf88 commit efc693d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/src/main/cpp/DeviceUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ device::DeviceType DeviceUtils::GetDeviceTypeFromSystem() {
deviceNamesMap.emplace("Quest", device::OculusQuest);
deviceNamesMap.emplace("Quest 2", device::OculusQuest2);
deviceNamesMap.emplace("Quest 3", device::MetaQuest3);
// So far no need to differentiate between Quest 3 and Quest 3S
deviceNamesMap.emplace("Quest 3S", device::MetaQuest3);
// So far no need to differentiate between Pico4 and Pico4E
deviceNamesMap.emplace("A8110", device::Pico4x);
deviceNamesMap.emplace("A9210", device::Pico4U);
Expand Down

0 comments on commit efc693d

Please sign in to comment.