mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-07-29 07:12:25 -07:00
Start Metal Backend
Revert build yml changes
This commit is contained in:
committed by
Isaac Marovitz
parent
5dbba07e33
commit
ebaf1d8258
16
src/Ryujinx.Graphics.Shader/CodeGen/Msl/Declarations.cs
Normal file
16
src/Ryujinx.Graphics.Shader/CodeGen/Msl/Declarations.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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;");
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user