mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-25 04:25:33 +00:00
Fixed GL.ReadPixels (was GL.ReadPixel)
This commit is contained in:
parent
64c3466c4c
commit
c5fff6bb7d
|
@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
|
||||||
// Build Number
|
// Build Number
|
||||||
// Revision
|
// Revision
|
||||||
//
|
//
|
||||||
[assembly: AssemblyVersion("0.9.9.3")]
|
[assembly: AssemblyVersion("0.9.9.4")]
|
||||||
[assembly: AssemblyFileVersion("0.9.9.3")]
|
[assembly: AssemblyFileVersion("0.9.9.4")]
|
||||||
|
|
|
@ -32,7 +32,7 @@ namespace Bind.Structures
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
static Regex endings = new Regex(@"((([df]|u?[isb])v?)|v)", RegexOptions.Compiled | RegexOptions.RightToLeft);
|
static Regex endings = new Regex(@"((([df]|u?[isb])v?)|v)", RegexOptions.Compiled | RegexOptions.RightToLeft);
|
||||||
static Regex endingsNotToTrim = new Regex("(ib|[tdrey]s|[eE]n[vd]|bled|Flagv|Tess|Status)", RegexOptions.Compiled | RegexOptions.RightToLeft);
|
static Regex endingsNotToTrim = new Regex("(ib|[tdrey]s|[eE]n[vd]|bled|Flagv|Tess|Status|Pixels)", RegexOptions.Compiled | RegexOptions.RightToLeft);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Add a trailing v to functions matching this regex. Used to differntiate between overloads taking both
|
/// Add a trailing v to functions matching this regex. Used to differntiate between overloads taking both
|
||||||
|
|
Loading…
Reference in a new issue