2013-11-21 23:32:42 +00:00
The Open Toolkit 1.1
22 November 2013
2009-06-24 16:09:29 +00:00
2009-05-31 15:17:12 +00:00
2009-02-22 15:51:06 +00:00
2009-05-31 15:18:09 +00:00
[Overview]
2009-02-22 15:51:06 +00:00
2013-11-21 23:32:42 +00:00
This is a beta release for OpenTK 1.1
2009-06-24 16:09:29 +00:00
2013-11-21 23:32:42 +00:00
New in OpenTK 1.1:
- support for OpenGL 4.4 and OpenGL ES 3.0
- strongly-typed enums for OpenGL ES 2.0 and 3.0
- inline documentation for all OpenGL and OpenGL ES core functions
- a new SDL2 backend for improved platform compatibility
- a greatly expanded math library
- numerous bugfixes for Mac OS X, Windows 8 and Linux
- ANGLE support for Windows systems without OpenGL drivers
- Support for Retina / high-DPI monitors
2009-05-31 15:17:12 +00:00
2013-11-21 23:32:42 +00:00
All users are strongly encouraged to upgrade to OpenTK 1.1
2009-05-31 15:17:12 +00:00
2009-06-02 15:49:39 +00:00
2013-11-21 23:32:42 +00:00
Visit http://www.opentk.com for the latest news and information on the Open Toolkit library
2010-03-11 22:53:11 +00:00
2013-11-21 23:32:42 +00:00
Download the source code at https://github.com/opentk/opentk
2010-03-11 22:53:11 +00:00
2009-11-17 14:54:30 +00:00
2009-11-10 06:32:04 +00:00
2013-11-21 23:32:42 +00:00
[Resolved issues]
2009-11-10 06:32:04 +00:00
2013-11-21 23:32:42 +00:00
Please refer to the following pages:
- https://github.com/opentk/opentk/issues/closed
- http://www.opentk.com/project/issues/opentk?sort=desc&order=Last+updated&text=&versions=1357%2C1395&states=2%2C7&submitted=&assigned=&participated=&form_token=a33a92f28934981edc50bea360f01762&form_id=project_issue_query
2009-06-02 15:49:39 +00:00
2009-06-24 16:09:29 +00:00
2013-11-21 23:32:42 +00:00
[Known issues]
2009-06-24 16:09:29 +00:00
2013-11-21 23:32:42 +00:00
- [all] The size of OpenTK.dll can be reduced.
2009-06-24 16:09:29 +00:00
2013-11-21 23:32:42 +00:00
- [all] GamePad API throws NotImplementedException.
2009-06-24 16:09:29 +00:00
2013-11-21 23:32:42 +00:00
- [all] Keyboard API exposes ushort parameter.
2009-06-24 16:09:29 +00:00
2013-11-21 23:32:42 +00:00
- [SDL] does not support ChangeResolution API.
2009-06-24 16:09:29 +00:00
2013-11-21 23:32:42 +00:00
- [SDL] does not support multiple keyboards/mice.
2009-06-24 16:09:29 +00:00
2013-11-21 23:32:42 +00:00
- [SDL] does not support GLControl.
2009-06-24 16:09:29 +00:00
2013-11-21 23:32:42 +00:00
- [Mac/Carbon] does not support Retina resolutions. Please use the SDL backend instead.
2009-06-29 18:32:51 +00:00
2013-11-21 23:32:42 +00:00
[Report an issue]
If you encounter an issue, please report it at:
https://github.com/opentk/opentk/issues
2009-06-29 18:32:51 +00:00
2013-11-21 23:32:42 +00:00
Highest priority will be given to regressions from OpenTK 1.0
2009-06-21 20:34:52 +00:00
2009-06-24 16:09:29 +00:00
2013-11-21 23:32:42 +00:00
[API compatibility]
2009-06-02 15:49:39 +00:00
2013-11-21 23:32:42 +00:00
The vast majority of projects will be able to upgrade to OpenTK 1.1 without any modifications. However, due to updates in the official OpenGL specification and due to bugfixes in the binding generator, a number of OpenGL signatures have changed between OpenTK 1.0 and 1.1.
2009-06-02 15:49:39 +00:00
2013-11-21 23:32:42 +00:00
Modified signatures have been marked with the [Obsolete] attribute. A warning message will be generated with instructions on a suggested replacement.
2009-06-02 15:49:39 +00:00
2013-11-21 23:32:42 +00:00
In a small number of cases, using the original signature would lead to incorrect results or a crash. These cases will generate a compiler error now. If you use any of the following signatures, please apply the suggested modification:
2009-06-02 15:49:39 +00:00
2013-11-21 23:32:42 +00:00
Namespace OpenTK.Graphics.OpenGL
Change signature:
- GL.MultiDrawArrays (<28> out<75> -> <20> ref<65> )
- GL.Amd.DeletePerfMonitors (<28> out<75> -> <20> ref<65> )
2009-06-02 15:49:39 +00:00
2013-11-21 23:32:42 +00:00
Change signature (may cause crash):
- GL.Apple.ObjectPurgeable (returns <20> AppleObjectPurgeable<6C> instead of <20> IntPtr<74> )
- GL.Ext.SeparableFilter2D
- GL.Ibm.EdgeFlagPointerList (<28> bool[]<5D> -> <20> bool*[]<5D> )
- GL.NV.TransformFeedbackVaryings (<28> string[]<5D> -> <20> int[]<5D> )
2009-06-02 15:49:39 +00:00
2013-11-21 23:32:42 +00:00
Change return type:
- GL.WaitSync (returns <20> WaitSyncFlags<67> instead of <20> ArbSync<6E> )
2009-06-02 15:49:39 +00:00
2013-11-21 23:32:42 +00:00
Namespace OpenTK.Graphics.ES11
Change return type:
- GL.GetError (<28> ErrorCode<64> instead of <20> All<6C> )
2009-06-02 15:49:39 +00:00
2013-11-21 23:32:42 +00:00
Change <20> ref<65> parameters to <20> out<75> :
- GL.GenBuffers
- GL.GenTextures
- GL.GetBoolean
- GL.GetBufferParameter
- GL.GetClipPlane
- GL.GetClipPlanex
- GL.GetFixed
- GL.GetFloat
- GL.GetInteger
- GL.GetLight
- GL.GetLightx
- GL.GetMaterial
- GL.GetMaterialx
- GL.GetTexEnv
- GL.GetTexEnvx
- GL.GetTexParameter
- GL.GetTexParameterx
- GL.Oes.GenFramebuffers
- GL.Oes.GetClipPlane
- GL.Oes.GetClipPlanex
- GL.Oes.GetFixed
- GL.Oes.GetFramebufferAttachmentParameter
- GL.Oes.GetLightx
- GL.Oes.GetMaterialx
- GL.Oes.GetRenderbufferParameter
- GL.Oes.GetTexEnvx
- GL.Oes.GetTexGen
- GL.Oes.GetTexGenx
- GL.Oes.GetTexParameterx
- GL.Oes.QueryMatrixx
- GL.NV.GenFences
- GL.NV.GetFence
2009-06-02 15:49:39 +00:00
2013-11-21 23:32:42 +00:00
Change namespace:
- GL.ClipPlanefIMG -> GL.Img.ClipPlane
- GL.DisableDriverControlQCOM -> GL.Qcom.DisableDriverControl
2009-06-02 15:49:39 +00:00
2013-11-21 23:32:42 +00:00
Namespace OpenTK.Graphics.ES20.GL
Change signature (may cause crash):
- GL.NV.GetFence now takes three parameters instead of two
2009-03-25 22:46:31 +00:00
2013-11-21 23:32:42 +00:00
Change <20> ref<65> parameters to <20> out<75> :
- GL.GetActiveAttrib
- GL.GetActiveUniform
- GL.GetAttachedShaders
- GL.GetProgramInfoLog
- GL.GetShaderInfoLog
- GL.GetShaderSource
- GL.Amd.GetPerfMonitorCounterData
- GL.Amd.GetPerfMonitorCounters
- GL.Amd.GetPerfMonitorCounterString
- GL.Amd.GetPerfMonitorGroup
- GL.Amd.GetPerfMonitorGroupString
- GL.Amd.SelectPerfMonitorCounters
Change namespace:
- GL.DisableDriverControlQCOM -> GL.Qcom.DisableDriverControl
- GL.GetDriverControlsQCOM -> GL.Qcom.GetDriverControls
- GL.GetDriverControlStringQCOM -> GL.Qcom.GetDriverControlString