mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
VideoBackends/Vulkan: Use nested namespace specifiers where applicable
This commit is contained in:
@ -11,9 +11,7 @@
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
|
||||
namespace Vulkan
|
||||
{
|
||||
namespace ShaderCompiler
|
||||
namespace Vulkan::ShaderCompiler
|
||||
{
|
||||
// SPIR-V compiled code type
|
||||
using SPIRVCodeType = u32;
|
||||
@ -30,6 +28,4 @@ std::optional<SPIRVCodeVector> CompileFragmentShader(std::string_view source_cod
|
||||
|
||||
// Compile a compute shader to SPIR-V.
|
||||
std::optional<SPIRVCodeVector> CompileComputeShader(std::string_view source_code);
|
||||
|
||||
} // namespace ShaderCompiler
|
||||
} // namespace Vulkan
|
||||
} // namespace Vulkan::ShaderCompiler
|
||||
|
Reference in New Issue
Block a user