<div><div>The updates include:</div><div>  * All of the newtypes in OpenGLRaw have been changed to type aliases (credit to Trevor Elliott and Mike Ledger)</div><div>  * OpenGLRaw&#39;s TypesInternal module has gone away</div>
</div><div>  * NVidia path rendering extensions have been added by &quot;ozelis&quot; on github</div><div><br></div><div>This release changes OpenGLRaw to use type aliases instead of newtype wrappers for the GLfoo types, such as GLenum/GLfloat/GLdouble. Using newtypes had the following downsides:</div>
<div><br></div><div>  * The CPP macros to make these definitions are borrowed verbatim from GHC sources and required updates with new GHC releases in order to stay compatible. Although, it hasn&#39;t been a problem yet, it&#39;s conceivable this will conflict with supporting different versions of GHC at some point.</div>
<div>  * Optimization rules have to be written against these newtypes and forgetting them can lead to significant performance degradation or extra verbosity for people using the bindings.</div><div>  * You have to reach pretty deep into GHC to make it possible for the newtypes to work in the unboxed vectors provided by the vector package. This is again, another missed opportunity for high performance code.</div>
<div><br></div><div>You can find the source and bug trackers for these packages here: <a href="https://github.com/haskell-opengl/">https://github.com/haskell-opengl/</a></div><div><br></div><div>Feedback, pull requests, and bug reports are always welcome!</div>
<div><br></div><div>Thanks!<br>Jason</div>