Fix depth stencil formats copy by matching equivalent color formats (#1198)
This commit is contained in:
parent
a804db6eed
commit
2900dda633
4 changed files with 37 additions and 15 deletions
|
@ -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
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue