aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/IGpuAccessor.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Shader/IGpuAccessor.cs')
-rw-r--r--Ryujinx.Graphics.Shader/IGpuAccessor.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Ryujinx.Graphics.Shader/IGpuAccessor.cs b/Ryujinx.Graphics.Shader/IGpuAccessor.cs
index fe034c57..1e05cdcd 100644
--- a/Ryujinx.Graphics.Shader/IGpuAccessor.cs
+++ b/Ryujinx.Graphics.Shader/IGpuAccessor.cs
@@ -44,12 +44,12 @@
return 0xffff;
}
- bool QueryIsTextureBuffer(int handle)
+ bool QueryIsTextureBuffer(int handle, int cbufSlot = -1)
{
return false;
}
- bool QueryIsTextureRectangle(int handle)
+ bool QueryIsTextureRectangle(int handle, int cbufSlot = -1)
{
return false;
}
@@ -74,7 +74,7 @@
return true;
}
- TextureFormat QueryTextureFormat(int handle)
+ TextureFormat QueryTextureFormat(int handle, int cbufSlot = -1)
{
return TextureFormat.R8G8B8A8Unorm;
}