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

@ -8,8 +8,7 @@
#include "common/common_types.h"
#include "video_core/textures/texture.h"
namespace Tegra {
namespace Texture {
namespace Tegra::Texture {
/**
* Unswizzles a swizzled texture without changing its format.
@ -33,5 +32,4 @@ void CopySwizzledData(u32 width, u32 height, u32 bytes_per_pixel, u32 out_bytes_
std::vector<u8> DecodeTexture(const std::vector<u8>& texture_data, TextureFormat format, u32 width,
u32 height);
} // namespace Texture
} // namespace Tegra
} // namespace Tegra::Texture