video_core: Use nested namespaces where applicable

Compresses a few namespace specifiers to be more compact.
This commit is contained in:
Lioncash
2018-07-20 18:14:17 -04:00
parent c1c9ab31e8
commit bb960c8cb4
11 changed files with 24 additions and 48 deletions

View File

@ -6,8 +6,7 @@
#include "video_core/engines/fermi_2d.h"
#include "video_core/textures/decoders.h"
namespace Tegra {
namespace Engines {
namespace Tegra::Engines {
Fermi2D::Fermi2D(MemoryManager& memory_manager) : memory_manager(memory_manager) {}
@ -69,5 +68,4 @@ void Fermi2D::HandleSurfaceCopy() {
}
}
} // namespace Engines
} // namespace Tegra
} // namespace Tegra::Engines