mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-07-20 07:42:26 -07:00
16 lines
496 B
C#
16 lines
496 B
C#
using Ryujinx.Graphics.Shader.CodeGen.Glsl;
|
|
using Ryujinx.Graphics.Shader.StructuredIr;
|
|
|
|
namespace Ryujinx.Graphics.Shader.CodeGen.Msl
|
|
{
|
|
static class Declarations
|
|
{
|
|
public static void Declare(CodeGenContext context, StructuredProgramInfo info)
|
|
{
|
|
context.AppendLine("#include <metal_stdlib>");
|
|
context.AppendLine("#include <simd/simd.h>");
|
|
context.AppendLine();
|
|
context.AppendLine("using namespace metal;");
|
|
}
|
|
}
|
|
} |