summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures/texture.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-22 03:50:14 +0200
committerGitHub <noreply@github.com>2018-07-22 03:50:14 +0200
commit3ac736c0031672fc16d04b3e3c69ba5dffe75047 (patch)
tree4dba6e9fbaded97082ff2228110d7bda91428593 /src/video_core/textures/texture.h
parentMerge pull request #758 from lioncash/sync (diff)
parentvideo_core: Use nested namespaces where applicable (diff)
downloadyuzu-3ac736c0031672fc16d04b3e3c69ba5dffe75047.tar
yuzu-3ac736c0031672fc16d04b3e3c69ba5dffe75047.tar.gz
yuzu-3ac736c0031672fc16d04b3e3c69ba5dffe75047.tar.bz2
yuzu-3ac736c0031672fc16d04b3e3c69ba5dffe75047.tar.lz
yuzu-3ac736c0031672fc16d04b3e3c69ba5dffe75047.tar.xz
yuzu-3ac736c0031672fc16d04b3e3c69ba5dffe75047.tar.zst
yuzu-3ac736c0031672fc16d04b3e3c69ba5dffe75047.zip
Diffstat (limited to 'src/video_core/textures/texture.h')
-rw-r--r--src/video_core/textures/texture.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/video_core/textures/texture.h b/src/video_core/textures/texture.h
index a17eaf19d..d1c755033 100644
--- a/src/video_core/textures/texture.h
+++ b/src/video_core/textures/texture.h
@@ -10,8 +10,7 @@
#include "common/common_types.h"
#include "video_core/memory_manager.h"
-namespace Tegra {
-namespace Texture {
+namespace Tegra::Texture {
enum class TextureFormat : u32 {
R32_G32_B32_A32 = 0x01,
@@ -260,5 +259,4 @@ struct FullTextureInfo {
/// Returns the number of bytes per pixel of the input texture format.
u32 BytesPerPixel(TextureFormat format);
-} // namespace Texture
-} // namespace Tegra
+} // namespace Tegra::Texture