Fix depth stencil formats copy by matching equivalent color formats (#1198)

This commit is contained in:
gdkchan 2020-07-13 08:41:30 -03:00 committed by GitHub
parent a804db6eed
commit 2900dda633
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 37 additions and 15 deletions

View file

@ -8,10 +8,10 @@ namespace Ryujinx.Graphics.Gpu.Image
[Flags]
enum TextureSearchFlags
{
None = 0,
IgnoreMs = 1 << 0,
Strict = 1 << 1 | Sampler,
Sampler = 1 << 2,
None = 0,
Strict = 1 << 0,
ForSampler = 1 << 1,
ForCopy = 1 << 2,
WithUpscale = 1 << 3
}
}