diff options
Diffstat (limited to 'Ryujinx.Graphics.Shader/IGpuAccessor.cs')
-rw-r--r-- | Ryujinx.Graphics.Shader/IGpuAccessor.cs | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Ryujinx.Graphics.Shader/IGpuAccessor.cs b/Ryujinx.Graphics.Shader/IGpuAccessor.cs index 06333dac..e10d869b 100644 --- a/Ryujinx.Graphics.Shader/IGpuAccessor.cs +++ b/Ryujinx.Graphics.Shader/IGpuAccessor.cs @@ -64,22 +64,9 @@ return true; } - public bool QuerySupportsViewportSwizzle() - { - return true; - } - public TextureFormat QueryTextureFormat(int handle) { return TextureFormat.R8G8B8A8Unorm; } - - public int QueryViewportSwizzle(int component) - { - // Bit 0: Negate flag. - // Bits 2-1: Component. - // Example: 0b110 = W, 0b111 = -W, 0b000 = X, 0b010 = Y etc. - return component << 1; - } } } |