mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-23 04:51:04 +00:00
Updated documentation and release notes.
This commit is contained in:
parent
da42cf4352
commit
ed6c5845b9
|
@ -9,6 +9,7 @@ OpenTK 0.9.0 -> 0.9.1
|
||||||
+ Fixed a bug that resulted in missing overloads in functions with both pointers and generic parameters (like Glu.TessVertex).
|
+ Fixed a bug that resulted in missing overloads in functions with both pointers and generic parameters (like Glu.TessVertex).
|
||||||
+ Worked around an Intellisense bug, where some overloads might not be reported if the pointer overload was the first one encountered.
|
+ Worked around an Intellisense bug, where some overloads might not be reported if the pointer overload was the first one encountered.
|
||||||
+ Fixed naming of 1D, 2D, 3D etc (e.g. Texture2D, which used to be Texture2d).
|
+ Fixed naming of 1D, 2D, 3D etc (e.g. Texture2D, which used to be Texture2d).
|
||||||
|
+ Corrected GL.ReadPixels (was GL.ReadPixel).
|
||||||
|
|
||||||
+ OpenTK
|
+ OpenTK
|
||||||
+ Graphics
|
+ Graphics
|
||||||
|
|
|
@ -39,12 +39,16 @@ replace operations:
|
||||||
1. "GLContext" -> "GraphicsContext"
|
1. "GLContext" -> "GraphicsContext"
|
||||||
2. "OpenTK.OpenGL" -> "OpenTK.Graphics.OpenGL"
|
2. "OpenTK.OpenGL" -> "OpenTK.Graphics.OpenGL"
|
||||||
3. "OpenTK.OpenAL" -> "OpenTK.Audio.OpenAL"
|
3. "OpenTK.OpenAL" -> "OpenTK.Audio.OpenAL"
|
||||||
|
4. "GL.ReadPixel" -> "GL.ReadPixels"
|
||||||
|
|
||||||
The "DisplayMode" class has been marked as obsolete. Its functionality has been
|
The "DisplayMode" class has been marked as obsolete. Its functionality has been
|
||||||
split into two classes: "DisplayResolution" and "GraphicsFormat". This is mostly
|
split into two classes: "DisplayResolution" and "GraphicsMode". This is mostly
|
||||||
an internal change and should only affect your GameWindow constructor (a 1-line
|
an internal change and should only affect your GameWindow constructor (a 1-line
|
||||||
change to fix the warning).
|
change to fix the warning).
|
||||||
|
|
||||||
|
The "ColorMode" class has been moved to "OpenTK.Graphics.ColorDepth"; please,
|
||||||
|
replace references with the latter.
|
||||||
|
|
||||||
Alc and Alut are no longer public. Please use OpenTK.Audio.AudioContext instead.
|
Alc and Alut are no longer public. Please use OpenTK.Audio.AudioContext instead.
|
||||||
|
|
||||||
---------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue