-
-
Notifications
You must be signed in to change notification settings - Fork 279
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
Ninja Gaiden Black: Intro video does not render on M1 mac #991
Comments
i have the same issue using a steam deck |
Same thing happens on linux with radeonsi
|
I found that setting |
This patch also fixes it for me, I guess it might also work on mac M1
|
Hi there @mbriar, could you help on how to set up this environment variable and this particular patch in question. Have the exact same setup as yours (as far as gpu goes) but I am very new in the linux space.
|
Hey @BasicFrag, if you run xemu from a terminal, setting the environment variable is as easy as:
if you use the flatpak you can do
|
It happens for the Steam Deck as well. The intro graphics (and the videos) works on old Radeon R5, using either the radeon driver or the amdgpu driver. The drawback is that emulation is very slow on the old AMD APU processor, but other than that the graphics look pretty accurate. https://www.notebookcheck.net/AMD-Radeon-R5-Beema.122502.0.html The OS used for the R5 machine is batocera.linux |
Confirmed that this has been an ongoing issue on the Steam Deck. |
I found adding when using flatpak from using emudeck. vs_position_always_invariant=true %command% Was able to fix all of my steamdeck rendering issues. Even allows using burnout 3. It doesn't work as well as the appimage version though. EDIT: changing resolution to higher gets same effect as flatpak one. But 1x has some issue but helps a little on some games. |
We're you thinking of adding this as a Pull request to the project? I added it to my GitHub and works on steamdeck. |
@Spidy123222 i don't know if this change is technically correct, I'm not really a graphics programmer. It just does the same as vs_position_always_invariant=true does on the driver level. |
Maybe a discussion in the discord about it could work out to see if it is correct or not. |
From some discussion with people testing. It breaks some games like super monkey ball. So I'm guessing it's not a proper implementation. |
Title
https://xemu.app/titles/5443000d/#Ninja-Gaiden-Black
Bug Description
The intro video after selecting a new game does not render on M1 mac. The text overlay is shown, but the video itself is black:
.
Note that this works fine on other platforms and seems specific to the M1/Monterey
Expected Behavior
The video should display (there's a picture of a sword around that frame)
xemu Version
Version: 0.7.21-1-g8334f294df
Branch: master
Commit: 8334f29
Date: Sat May 28 19:07:34 UTC 2022
I don't know if this ever worked on M1, I tested with a branch from the 0.6.x days and it did not work there either.
System Information
CPU:
OS Platform: macOS
OS Version: Version 12.4 (Build 21F79)
Manufacturer: Apple
GPU Model: Apple M1 Max
Driver: 4.1 Metal - 76.3
Shader: 4.10
Additional Context
I can fix the issue in renderdoc by clamping the
oPos
value. As long as the upper value is no higher than 1.0 the video shows up. E.g.,:oPos = clamp(oPos, -2, 1);
,oPos = clamp(oPos, -1, 1);
The text was updated successfully, but these errors were encountered: