Fix invariant position not doing its job
This commit is contained in:
parent
d22feff1d2
commit
e3468d35b6
1 changed files with 3 additions and 1 deletions
|
@ -38,8 +38,10 @@ namespace Ryujinx.Graphics.Metal
|
|||
{
|
||||
ShaderSource shader = shaders[index];
|
||||
|
||||
var compileOptions = new MTLCompileOptions { PreserveInvariance = true };
|
||||
|
||||
var libraryError = new NSError(IntPtr.Zero);
|
||||
var shaderLibrary = device.NewLibrary(StringHelper.NSString(shader.Code), new MTLCompileOptions(IntPtr.Zero), ref libraryError);
|
||||
var shaderLibrary = device.NewLibrary(StringHelper.NSString(shader.Code), compileOptions, ref libraryError);
|
||||
if (libraryError != IntPtr.Zero)
|
||||
{
|
||||
Logger.Warning?.PrintMsg(LogClass.Gpu, shader.Code);
|
||||
|
|
Loading…
Reference in a new issue