Przeglądaj źródła

Fix primitive count calculation for topology conversion (#3763)

Luigi's Mansion 3 performs a non-index quads draw with 6 vertices. It's meant to ignore the last two, but the index pattern's primitive count calculation was rounding up.

No idea why the game does this but this should fix random triangles in the map.
riperiperi 3 lat temu
rodzic
commit
2b50e52e48
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      Ryujinx.Graphics.Vulkan/IndexBufferPattern.cs

+ 1 - 1
Ryujinx.Graphics.Vulkan/IndexBufferPattern.cs

@@ -38,7 +38,7 @@ namespace Ryujinx.Graphics.Vulkan
 
         public int GetPrimitiveCount(int vertexCount)
         {
-            return Math.Max(0, ((vertexCount - BaseIndex) + IndexStride - 1) / IndexStride);
+            return Math.Max(0, (vertexCount - BaseIndex) / IndexStride);
         }
 
         public int GetConvertedCount(int indexCount)