-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Safari desktop always returns Tier 1 apple gpu #111
Comments
connorward93
changed the title
Safari desktop returns 'Apple GPU'
Safari desktop always returns Tier 1 apple gpu
Jan 20, 2023
Seeing this as well on a M1 Mac |
At some point this started to happen for me as well. Maybe Apple made it more complicated to retrieve GPU information. |
I've also been seeing this issue on my M1 Mac |
I prefer to solve the problem with code like the one below. const isMacARM = async () => {
try {
const agentData = await navigator.userAgentData.getHighEntropyValues([
"architecture",
]);
return agentData.platform === "macOS" && agentData.architecture === "arm";
} catch (e) {
return false;
}
}; |
This does not work on Safari M2. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using Safari on a desktop machine always returns the following:
Tested on a 2015 MBP and a 2020 MBP (M1).
The text was updated successfully, but these errors were encountered: