mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-01-19 00:41:29 +00:00
6ebe5bb406
* Why is this not working * Revert helper shader changes for now * Byte Index Buffer Restride
24 lines
767 B
XML
24 lines
767 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
|
|
<ProjectReference Include="..\Ryujinx.Graphics.GAL\Ryujinx.Graphics.GAL.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="SharpMetal" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Shaders\Blit.metal" />
|
|
<EmbeddedResource Include="Shaders\ChangeBufferStride.metal" />
|
|
<EmbeddedResource Include="Shaders\ColorClear.metal" />
|
|
<EmbeddedResource Include="Shaders\DepthStencilClear.metal" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|