mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-20 14:10:18 +00:00
15 lines
452 B
C#
15 lines
452 B
C#
|
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;");
|
||
|
}
|
||
|
}
|
||
|
}
|