From b286537b6968ff6462e39375099eb5a21307132a Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Fri, 14 Mar 2025 12:00:14 +0200 Subject: [PATCH] Shadergen types: Add Metal & MSL --- include/PICA/shader_gen_types.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/PICA/shader_gen_types.hpp b/include/PICA/shader_gen_types.hpp index 1877227f..b069f71f 100644 --- a/include/PICA/shader_gen_types.hpp +++ b/include/PICA/shader_gen_types.hpp @@ -2,8 +2,8 @@ namespace PICA::ShaderGen { // Graphics API this shader is targetting - enum class API { GL, GLES, Vulkan }; + enum class API { GL, GLES, Vulkan, Metal }; - // Shading language to use (Only GLSL for the time being) - enum class Language { GLSL }; -} // namespace PICA::ShaderGen \ No newline at end of file + // Shading language to use + enum class Language { GLSL, MSL }; +} // namespace PICA::ShaderGen