Fix some invalid blits involving depth textures (#4723)

This commit is contained in:
gdkchan
2023-05-03 21:20:12 -03:00
committed by GitHub
parent 6279f5e430
commit 4d1579acbf
5 changed files with 24 additions and 8 deletions

View File

@@ -11,7 +11,8 @@ namespace Ryujinx.Graphics.Gpu.Image
None = 0,
ForSampler = 1 << 1,
ForCopy = 1 << 2,
WithUpscale = 1 << 3,
NoCreate = 1 << 4
DepthAlias = 1 << 3,
WithUpscale = 1 << 4,
NoCreate = 1 << 5
}
}