summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/kepler_compute.h
diff options
context:
space:
mode:
authorRodrigo Locatti <reinuseslisp@airmail.cc>2019-10-30 00:46:33 +0100
committerGitHub <noreply@github.com>2019-10-30 00:46:33 +0100
commit2ec5b55ee3c74063bc9af22e734e4cbd85682fde (patch)
tree5cc6f5d9c8a1173b0a1e36987c62d134a57d6bfc /src/video_core/engines/kepler_compute.h
parentMerge pull request #3023 from lioncash/opus (diff)
parentmaxwell_3d/kepler_compute: Remove unused arguments in GetTexture (diff)
downloadyuzu-2ec5b55ee3c74063bc9af22e734e4cbd85682fde.tar
yuzu-2ec5b55ee3c74063bc9af22e734e4cbd85682fde.tar.gz
yuzu-2ec5b55ee3c74063bc9af22e734e4cbd85682fde.tar.bz2
yuzu-2ec5b55ee3c74063bc9af22e734e4cbd85682fde.tar.lz
yuzu-2ec5b55ee3c74063bc9af22e734e4cbd85682fde.tar.xz
yuzu-2ec5b55ee3c74063bc9af22e734e4cbd85682fde.tar.zst
yuzu-2ec5b55ee3c74063bc9af22e734e4cbd85682fde.zip
Diffstat (limited to 'src/video_core/engines/kepler_compute.h')
-rw-r--r--src/video_core/engines/kepler_compute.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/video_core/engines/kepler_compute.h b/src/video_core/engines/kepler_compute.h
index 8e7182727..b185c98c7 100644
--- a/src/video_core/engines/kepler_compute.h
+++ b/src/video_core/engines/kepler_compute.h
@@ -196,11 +196,10 @@ public:
/// Write the value to the register identified by method.
void CallMethod(const GPU::MethodCall& method_call);
- Tegra::Texture::FullTextureInfo GetTexture(std::size_t offset) const;
+ Texture::FullTextureInfo GetTexture(std::size_t offset) const;
- /// Given a Texture Handle, returns the TSC and TIC entries.
- Texture::FullTextureInfo GetTextureInfo(const Texture::TextureHandle tex_handle,
- std::size_t offset) const;
+ /// Given a texture handle, returns the TSC and TIC entries.
+ Texture::FullTextureInfo GetTextureInfo(Texture::TextureHandle tex_handle) const;
u32 AccessConstBuffer32(ShaderType stage, u64 const_buffer, u64 offset) const override;