Skip to content

Commit c4e4cb9

Browse files
author
Alexander Kovelenov
committed
Fix issue with Quest devices running in desktop mode
1 parent b1b1cc7 commit c4e4cb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export const getGPUTier = async ({
6363
const getGpuType = (renderer) => {
6464
const types = isMobile ?
6565
['adreno', 'apple', 'mali-t', 'mali', 'nvidia', 'powervr', 'samsung'] :
66-
['intel', 'apple', 'amd', 'radeon', 'nvidia', 'geforce'];
66+
['intel', 'apple', 'amd', 'radeon', 'nvidia', 'geforce', 'adreno'];
6767
for (const type of types) {
6868
if (renderer.includes(type)) {
6969
return type;

0 commit comments

Comments
 (0)