From 08d10c16c665456bdfeb97dce918fe9f8722254f Mon Sep 17 00:00:00 2001 From: Isaac Marovitz Date: Wed, 30 Aug 2023 19:35:57 +0100 Subject: [PATCH] Get build working again (values likely wrong) --- src/Ryujinx.Graphics.Metal/MetalRenderer.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Ryujinx.Graphics.Metal/MetalRenderer.cs b/src/Ryujinx.Graphics.Metal/MetalRenderer.cs index 6d1a2f5e2..18f11e583 100644 --- a/src/Ryujinx.Graphics.Metal/MetalRenderer.cs +++ b/src/Ryujinx.Graphics.Metal/MetalRenderer.cs @@ -163,10 +163,12 @@ namespace Ryujinx.Graphics.Metal supportsMismatchingViewFormat: true, supportsCubemapView: true, supportsNonConstantTextureOffset: false, + supportsScaledVertexFormats: true, supportsShaderBallot: false, supportsShaderBarrierDivergence: false, supportsShaderFloat64: false, supportsTextureShadowLod: false, + supportsVertexStoreAndAtomics: false, supportsViewportIndexVertexTessellation: false, supportsViewportMask: false, supportsViewportSwizzle: false, @@ -178,7 +180,9 @@ namespace Ryujinx.Graphics.Metal maximumImagesPerStage: Constants.MaxTextureBindings, maximumComputeSharedMemorySize: (int)_device.MaxThreadgroupMemoryLength, maximumSupportedAnisotropy: 0, + shaderSubgroupSize: 256, storageBufferOffsetAlignment: 0, + textureBufferOffsetAlignment: 0, gatherBiasPrecision: 0 ); }