Bug #2436
Incompatibility with the new M1
Description
Just upgraded to the new Mac Mini (M1) 8GB/512GB HDD.
Re-downloaded Doomsday (both for stable and then unstable) but neither works properly. The game loads either version of Doom okay - but the main menu text is blurred out red. I can still use this menu so started a new game. The textures aren't working and everything looks quite plain and cartoon-like.
I'm using the same WADs for Doom1/2 that I've been using for years with Doomsday. So, I'm assuming this is something to do with the new M1 processors?
Fwiw, Doom 2 says "Missing Data Files". But, these are all the same WADs I've used for years :?
Hoping this helps?
Cheers
Steve
Associated revisions
macOS|Fixed: Invalid map culling
In an arm64 build, conversion from float/double to uint16_t behaves differently than in x86_64: half of 16-bit binangles were zeroes. Convert first to int32_t.
IssueID #2436
macOS|Fixed: Missing textures on M1 Macs
For some reasons, using a switch-case when sampling the batch textures fails to select anything above batchIndex 0 on the M1 Macs. A likely shader compiler bug.
IssueID #2436
macOS|Fixed: Invalid map culling
In an arm64 build, conversion from float/double to uint16_t behaves differently than in x86_64: half of 16-bit binangles were zeroes. Convert first to int32_t.
IssueID #2436
Fixed|macOS: Bullet angles restricted to 0-180 degrees
IssueID #2436
Fixed|macOS: Bullet angles restricted to 0-180 degrees
IssueID #2436
Fixed|macOS: Camera doesn't move downwards
Another float-to-unsigned cast that clamps negative values to zero.
IssueID #2436
Fixed|macOS: Camera doesn't move downwards
Another float-to-unsigned cast that clamps negative values to zero.
IssueID #2436
History
#1 Updated by skyjake almost 4 years ago
Sounds like Rosetta 2 is running the CPU code fine but the OpenGL rendering side is having some hiccups. The M1 has Apple's own GPU so it is running different OpenGL drivers than before, and with the focus on the Metal API it seems unlikely these drivers will improve much in the future.
I don't have an M1 Mac myself so I'm unable to find workarounds for these rendering glitches for the time being.
In the slightly longer term, switching to Metal for the rendering would be advantageous on the Mac.
#2 Updated by applecrypt almost 4 years ago
In the slightly longer term, switching to Metal for the rendering would be advantageous on the Mac.
I hope this is something that isn't years away? I'm a bit gutted to lose Half-Life 2 and then I find out Doomsday hiccups with the new M1... Not a good day! Thanks for the reply :)
#3 Updated by skyjake almost 4 years ago
I feel you... Being an early adopter does have it downsides. :/
Hmm, a full Metal port is a significant undertaking, but perhaps there is an intermediate step that could be taken. I'm much closer to getting an OpenGL ES 3 version up and running, suitable for Android and Raspberry Pi, for example. GLES3 might work better on the M1 since it is quite a bit simplified compared to the full OpenGL. And if not, there's always solutions like ANGLE that will help.
#4 Updated by skyjake almost 4 years ago
- Category set to 3rd party compatibility
- Target version set to Rendering
#5 Updated by skyjake almost 4 years ago
- Subject changed from Incompatibility with the new M1 ? to Incompatibility with the new M1
- Status changed from New to In Progress
- Assignee changed from Deng Team to skyjake
- Target version changed from Rendering to 2.3.x
- % Done changed from 0 to 50
Good news, I now have the pleasure of owning an M1 MacBook Air and have found a workaround for the missing texture issue.
It's a bit bizarre and looks like a bug in Apple's shader compiler implementation. Changing from a switch-case to a series of if statements fixed the problem.
There is another rendering problem with the geometry culling, though. Likely a problem with integer overflow behavior, just need to find out exactly where it happens.
#6 Updated by skyjake almost 4 years ago
- % Done changed from 50 to 100
#7 Updated by skyjake almost 4 years ago
- Target version changed from 2.3.x to 2.3.1
#8 Updated by applecrypt almost 4 years ago
Brilliant!!! And congrats on a fine purchase too. I'll look at downloading the latest version later - I'm assuming it'll be the nightly build?
#9 Updated by skyjake almost 4 years ago
applecrypt wrote:
I'll look at downloading the latest version later - I'm assuming it'll be the nightly build?
The fix will be heading to 2.3.1 first. Due to the 3.0 transition in the master branch I can't release an unstable build right away, but I'll bump the stable branch to 2.3.1 RC and include it there. It should be available (approximately) by tomorrow for testing.
#10 Updated by applecrypt almost 4 years ago
Fair enough, I don't understand the techno-jargon behind this ;) but I'll look at the RC version update tomorrow/the weekend. Should be fun! I will give it a playtest :)
macOS|Fixed: Missing textures on M1 Macs
For some reasons, using a switch-case when sampling the batch textures fails to select anything above batchIndex 0 on the M1 Macs. A likely shader compiler bug.
IssueID #2436