mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-10 00:26:27 +02:00
Fix incorrect depth texture 3D flag (#7262)
This commit is contained in:
parent
398fa1c238
commit
fdd7ee791c
2 changed files with 10 additions and 6 deletions
|
@ -415,7 +415,13 @@ namespace Ryujinx.Graphics.Gpu.Engine.Threed
|
|||
#pragma warning disable CS0649 // Field is never assigned to
|
||||
public int Width;
|
||||
public int Height;
|
||||
public int Depth;
|
||||
public ushort Depth;
|
||||
public ushort Flags;
|
||||
|
||||
public readonly bool UnpackIsLayered()
|
||||
{
|
||||
return (Flags & 1) == 0;
|
||||
}
|
||||
#pragma warning restore CS0649
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue