aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Gpu/Image/TextureSearchFlags.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2023-05-03 21:20:12 -0300
committerGitHub <noreply@github.com>2023-05-03 21:20:12 -0300
commit4d1579acbf60ff23f14b591db762267f93092d0c (patch)
tree494acfffeaf6901b19c1967129582c4e3efe7a4c /src/Ryujinx.Graphics.Gpu/Image/TextureSearchFlags.cs
parent6279f5e4305b1dd5844c0a0e3538fcdd72e6bf33 (diff)
Fix some invalid blits involving depth textures (#4723)1.1.748
Diffstat (limited to 'src/Ryujinx.Graphics.Gpu/Image/TextureSearchFlags.cs')
-rw-r--r--src/Ryujinx.Graphics.Gpu/Image/TextureSearchFlags.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Ryujinx.Graphics.Gpu/Image/TextureSearchFlags.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureSearchFlags.cs
index 890bf173..d7b99a17 100644
--- a/src/Ryujinx.Graphics.Gpu/Image/TextureSearchFlags.cs
+++ b/src/Ryujinx.Graphics.Gpu/Image/TextureSearchFlags.cs
@@ -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
}
} \ No newline at end of file