File tree Expand file tree Collapse file tree 6 files changed +25
-8
lines changed
src/Graphics/Rendering/OpenGL/Raw Expand file tree Collapse file tree 6 files changed +25
-8
lines changed Original file line number Diff line number Diff line change 1+ 2.6.1.0
2+ -------
3+ * Updated OpenGL registry to r32258. Note that the major version was
4+ intentionally not bumped, because the signature change of
5+ ` glClearNamedFramebufferfi ` was a bug fix, see the corresponding
6+ [ issue] ( https://www.khronos.org/bugzilla/show_bug.cgi?id=1394 ) on Khronos.
7+
182.6.0.0
29-------
310* Use the ` Half ` type from the ` half ` package.
Original file line number Diff line number Diff line change 11name : OpenGLRaw
2- version : 2.6.0 .0
2+ version : 2.6.1 .0
33synopsis : A raw binding for the OpenGL graphics system
44description :
55 OpenGLRaw is a raw Haskell binding for the OpenGL 4.5 graphics system and
Original file line number Diff line number Diff line change @@ -2037,10 +2037,6 @@ foreign import CALLCONV "dynamic" dyn364
20372037 :: FunPtr (GLuint -> GLenum -> GLenum -> Ptr a -> IO () )
20382038 -> GLuint -> GLenum -> GLenum -> Ptr a -> IO ()
20392039
2040- foreign import CALLCONV " dynamic" dyn85
2041- :: FunPtr (GLuint -> GLenum -> GLfloat -> GLint -> IO () )
2042- -> GLuint -> GLenum -> GLfloat -> GLint -> IO ()
2043-
20442040foreign import CALLCONV " dynamic" dyn483
20452041 :: FunPtr (GLuint -> GLenum -> GLfloat -> IO () )
20462042 -> GLuint -> GLenum -> GLfloat -> IO ()
@@ -2077,6 +2073,10 @@ foreign import CALLCONV "dynamic" dyn270
20772073 :: FunPtr (GLuint -> GLenum -> GLint -> GLenum -> Ptr GLint -> IO () )
20782074 -> GLuint -> GLenum -> GLint -> GLenum -> Ptr GLint -> IO ()
20792075
2076+ foreign import CALLCONV " dynamic" dyn85
2077+ :: FunPtr (GLuint -> GLenum -> GLint -> GLfloat -> GLint -> IO () )
2078+ -> GLuint -> GLenum -> GLint -> GLfloat -> GLint -> IO ()
2079+
20802080foreign import CALLCONV " dynamic" dyn188
20812081 :: FunPtr (GLuint -> GLenum -> GLint -> GLint -> GLint -> GLint -> GLint -> GLint -> GLsizei -> GLsizei -> IO () )
20822082 -> GLuint -> GLenum -> GLint -> GLint -> GLint -> GLint -> GLint -> GLint -> GLsizei -> GLsizei -> IO ()
Original file line number Diff line number Diff line change @@ -6051,13 +6051,14 @@ glClearNamedFramebufferfi
60516051 :: MonadIO m
60526052 => GLuint -- ^ @framebuffer@.
60536053 -> GLenum -- ^ @buffer@.
6054+ -> GLint -- ^ @drawbuffer@.
60546055 -> GLfloat -- ^ @depth@.
60556056 -> GLint -- ^ @stencil@.
60566057 -> m ()
6057- glClearNamedFramebufferfi v1 v2 v3 v4 = liftIO $ dyn85 ptr_glClearNamedFramebufferfi v1 v2 v3 v4
6058+ glClearNamedFramebufferfi v1 v2 v3 v4 v5 = liftIO $ dyn85 ptr_glClearNamedFramebufferfi v1 v2 v3 v4 v5
60586059
60596060{-# NOINLINE ptr_glClearNamedFramebufferfi #-}
6060- ptr_glClearNamedFramebufferfi :: FunPtr (GLuint -> GLenum -> GLfloat -> GLint -> IO ())
6061+ ptr_glClearNamedFramebufferfi :: FunPtr (GLuint -> GLenum -> GLint -> GLfloat -> GLint -> IO ())
60616062ptr_glClearNamedFramebufferfi = unsafePerformIO $ getCommand "glClearNamedFramebufferfi"
60626063
60636064-- glClearNamedFramebufferfv ---------------------------------------------------
Original file line number Diff line number Diff line change @@ -2720,6 +2720,15 @@ gl_CUBIC_EXT = 0x8334
27202720gl_CUBIC_HP :: GLenum
27212721gl_CUBIC_HP = 0x815F
27222722
2723+ gl_CUBIC_IMG :: GLenum
2724+ gl_CUBIC_IMG = 0x9139
2725+
2726+ gl_CUBIC_MIPMAP_LINEAR_IMG :: GLenum
2727+ gl_CUBIC_MIPMAP_LINEAR_IMG = 0x913B
2728+
2729+ gl_CUBIC_MIPMAP_NEAREST_IMG :: GLenum
2730+ gl_CUBIC_MIPMAP_NEAREST_IMG = 0x913A
2731+
27232732gl_CULL_FACE :: GLenum
27242733gl_CULL_FACE = 0x0B44
27252734
You can’t perform that action at this time.
0 commit comments