flyinghead / flycast

Flycast is a multiplatform Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator
GNU General Public License v2.0
1.33k stars 168 forks source link

Minor graphical glitches in certain places, certain parts #1054

Open kihato opened 1 year ago

kihato commented 1 year ago

Platform / OS / Hardware: Windows11 / i7-10700F / GTX 1660 SUPER

Github hash: 5f161df

The following games have partial and limited issues that you may not need to worry about, but they occur regardless of your settings. 102

Sydney2000

Buz

The image is the JP version. The US version has a different perspective, so you may not notice it. BlueStinger

flyinghead commented 1 year ago

Notes about the Disney 2000 issue: The (transparent) glitching polygon is drawn at the same depth as the title screen. It's using autosort so the depth func should be Greater or equal. It could be that the render pass should use presort instead, which would fix the issue: the "Press Start Button" left end polygon is drawn at a strictly greater depth than the background and both specify Greater as depth func. Or Greater depth func is allowed in autosort mode which would be a whole new story...