summaryrefslogtreecommitdiffstats
path: root/src/video_core/texture_cache/surface_params.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2020-01-14 00:35:43 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-01-14 00:35:43 +0100
commit2b2712fa95b99d1761270131b2604b7c9e99eac5 (patch)
tree07993cc6cb7d5bbecdb1b1fb415cae856922fd82 /src/video_core/texture_cache/surface_params.h
parentMerge pull request #3283 from ReinUsesLisp/vk-compute-pass (diff)
downloadyuzu-2b2712fa95b99d1761270131b2604b7c9e99eac5.tar
yuzu-2b2712fa95b99d1761270131b2604b7c9e99eac5.tar.gz
yuzu-2b2712fa95b99d1761270131b2604b7c9e99eac5.tar.bz2
yuzu-2b2712fa95b99d1761270131b2604b7c9e99eac5.tar.lz
yuzu-2b2712fa95b99d1761270131b2604b7c9e99eac5.tar.xz
yuzu-2b2712fa95b99d1761270131b2604b7c9e99eac5.tar.zst
yuzu-2b2712fa95b99d1761270131b2604b7c9e99eac5.zip
Diffstat (limited to 'src/video_core/texture_cache/surface_params.h')
-rw-r--r--src/video_core/texture_cache/surface_params.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/video_core/texture_cache/surface_params.h b/src/video_core/texture_cache/surface_params.h
index 992b5c022..9256fd6d9 100644
--- a/src/video_core/texture_cache/surface_params.h
+++ b/src/video_core/texture_cache/surface_params.h
@@ -209,6 +209,11 @@ public:
return target == VideoCore::Surface::SurfaceTarget::TextureBuffer;
}
+ /// Returns the number of layers in the surface.
+ std::size_t GetNumLayers() const {
+ return is_layered ? depth : 1;
+ }
+
/// Returns the debug name of the texture for use in graphic debuggers.
std::string TargetName() const;
@@ -287,10 +292,6 @@ private:
/// Returns the size of a layer
std::size_t GetLayerSize(bool as_host_size, bool uncompressed) const;
- std::size_t GetNumLayers() const {
- return is_layered ? depth : 1;
- }
-
/// Returns true if these parameters are from a layered surface.
bool IsLayered() const;
};