Get[Program|Shader]InfoLog now return strings directly (instead of out parameters).

This commit is contained in:
the_fiddler 2009-06-26 21:05:23 +00:00
parent a405f07d55
commit ac0e20e3fd

View file

@ -911,6 +911,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)
@ -932,6 +943,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)