diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-07-05 01:38:19 +0200 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-07-05 01:38:19 +0200 |
commit | 30b176f92b67ec7a9b1ce08cf89d50abd125f8a8 (patch) | |
tree | 2ee13e6215101a3abe1f0517ae92608070e3941e /src/video_core/texture_cache | |
parent | texture_cache: Pack sibling queries inside a method (diff) | |
download | yuzu-30b176f92b67ec7a9b1ce08cf89d50abd125f8a8.tar yuzu-30b176f92b67ec7a9b1ce08cf89d50abd125f8a8.tar.gz yuzu-30b176f92b67ec7a9b1ce08cf89d50abd125f8a8.tar.bz2 yuzu-30b176f92b67ec7a9b1ce08cf89d50abd125f8a8.tar.lz yuzu-30b176f92b67ec7a9b1ce08cf89d50abd125f8a8.tar.xz yuzu-30b176f92b67ec7a9b1ce08cf89d50abd125f8a8.tar.zst yuzu-30b176f92b67ec7a9b1ce08cf89d50abd125f8a8.zip |
Diffstat (limited to 'src/video_core/texture_cache')
-rw-r--r-- | src/video_core/texture_cache/surface_params.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/texture_cache/surface_params.cpp b/src/video_core/texture_cache/surface_params.cpp index 340ed2ca0..9c56e2b4f 100644 --- a/src/video_core/texture_cache/surface_params.cpp +++ b/src/video_core/texture_cache/surface_params.cpp @@ -310,6 +310,8 @@ std::string SurfaceParams::TargetName() const { switch (target) { case SurfaceTarget::Texture1D: return "1D"; + case SurfaceTarget::TextureBuffer: + return "TexBuffer"; case SurfaceTarget::Texture2D: return "2D"; case SurfaceTarget::Texture3D: |