mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-01-28 15:32:06 -08:00
Print shader code involved in failed linking
This commit is contained in:
parent
b821cb1739
commit
66e2533c90
@ -26,6 +26,7 @@ namespace Ryujinx.Graphics.Metal
|
||||
var shaderLibrary = device.NewLibrary(StringHelper.NSString(shader.Code), new MTLCompileOptions(IntPtr.Zero), ref libraryError);
|
||||
if (libraryError != IntPtr.Zero)
|
||||
{
|
||||
Logger.Warning?.PrintMsg(LogClass.Gpu, shader.Code);
|
||||
Logger.Warning?.Print(LogClass.Gpu, $"{shader.Stage} shader linking failed: \n{StringHelper.String(libraryError.LocalizedDescription)}");
|
||||
_status = ProgramLinkStatus.Failure;
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user