mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 15:45:34 +00:00
Get[Program|Shader]InfoLog now return strings directly (instead of out parameters).
This commit is contained in:
parent
a405f07d55
commit
ac0e20e3fd
|
@ -913,6 +913,17 @@ namespace OpenTK.Graphics
|
|||
|
||||
#endregion
|
||||
|
||||
#region public static string GetShaderInfoLog(Int32 shader)
|
||||
|
||||
public static string GetShaderInfoLog(Int32 shader)
|
||||
{
|
||||
string info;
|
||||
GetShaderInfoLog(shader, out info);
|
||||
return info;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region public static void GetShaderInfoLog(Int32 shader, out string info)
|
||||
|
||||
public static void GetShaderInfoLog(Int32 shader, out string info)
|
||||
|
@ -934,6 +945,17 @@ namespace OpenTK.Graphics
|
|||
|
||||
#endregion
|
||||
|
||||
#region public static string GetProgramInfoLog(Int32 program)
|
||||
|
||||
public static string GetProgramInfoLog(Int32 program)
|
||||
{
|
||||
string info;
|
||||
GetProgramInfoLog(program, out info);
|
||||
return info;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region public static void GetProgramInfoLog(Int32 program, out string info)
|
||||
|
||||
public static void GetProgramInfoLog(Int32 program, out string info)
|
||||
|
|
Loading…
Reference in a new issue