Opentk/Source
Fraser Waters 5481aa7097 Fix a bug in single->half conversion.
The original C code had if(m & 0x00800000) which is true if the
expresssion does not evaluate to zero. This was inncorretly translated
to the C# code if((m & 0x00800000) == 1) which only evaluates true if
the expression evalaute to 1, which it never does. The correct test is
to test not equal to zero (!= 0).
2014-06-02 11:16:43 +01:00
..
Bind [GL] Added missing [Rgba]16Snorm texture formats 2014-03-18 12:08:02 +01:00
Build.UpdateVersion [Build] Updated copyright information 2014-03-18 14:29:41 +01:00
Compatibility Normalized xml doc file paths 2013-12-15 23:24:17 +01:00
Converter Fix compile warnings in Converter. 2014-02-25 10:31:17 +00:00
Examples [ES] Fixed loading of OpenGL ES core API 2014-03-16 19:40:49 +01:00
Generator.Rewrite [ES] Fixed loading of OpenGL ES core API 2014-03-16 19:40:49 +01:00
GLControl Update spacing and formatting to match existing style 2014-02-25 18:46:07 -06:00
OpenTK Fix a bug in single->half conversion. 2014-06-02 11:16:43 +01:00