diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-22 03:50:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-22 03:50:14 +0200 |
commit | 3ac736c0031672fc16d04b3e3c69ba5dffe75047 (patch) | |
tree | 4dba6e9fbaded97082ff2228110d7bda91428593 /src/video_core/engines/fermi_2d.h | |
parent | Merge pull request #758 from lioncash/sync (diff) | |
parent | video_core: Use nested namespaces where applicable (diff) | |
download | yuzu-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/engines/fermi_2d.h')
-rw-r--r-- | src/video_core/engines/fermi_2d.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/video_core/engines/fermi_2d.h b/src/video_core/engines/fermi_2d.h index 70667cb94..dcf9ef8b9 100644 --- a/src/video_core/engines/fermi_2d.h +++ b/src/video_core/engines/fermi_2d.h @@ -12,8 +12,7 @@ #include "video_core/gpu.h" #include "video_core/memory_manager.h" -namespace Tegra { -namespace Engines { +namespace Tegra::Engines { #define FERMI2D_REG_INDEX(field_name) \ (offsetof(Tegra::Engines::Fermi2D::Regs, field_name) / sizeof(u32)) @@ -110,5 +109,4 @@ ASSERT_REG_POSITION(operation, 0xAB); ASSERT_REG_POSITION(trigger, 0xB5); #undef ASSERT_REG_POSITION -} // namespace Engines -} // namespace Tegra +} // namespace Tegra::Engines |