Skip to content

Commit 6f04632

Browse files
committed
Updated OpenGL registry to fe1a89f35. Bumped version to 3.3.0.1.
1 parent 32fd68d commit 6f04632

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
3.3.0.1
2+
-------
3+
* Updated OpenGL registry to fe1a89f35.
4+
* Relaxed version bound of `half` package.
5+
16
3.3.0.0
27
-------
38
* Updated OpenGL registry to 6565c242f.

OpenGLRaw.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: OpenGLRaw
2-
version: 3.3.0.0
2+
version: 3.3.0.1
33
synopsis: A raw binding for the OpenGL graphics system
44
description:
55
OpenGLRaw is a raw Haskell binding for the OpenGL 4.6 graphics system and

src/Graphics/GL/Functions/F06.hs

+8-4
Original file line numberDiff line numberDiff line change
@@ -1414,6 +1414,7 @@ ptr_glDrawRangeElementsEXT = unsafePerformIO $ getCommand "glDrawRangeElementsEX
14141414

14151415
-- glDrawTexfOES ---------------------------------------------------------------
14161416

1417+
-- | The vector equivalent of this command is 'glDrawTexfvOES'.
14171418
glDrawTexfOES
14181419
:: MonadIO m
14191420
=> GLfloat -- ^ @x@.
@@ -1432,7 +1433,7 @@ ptr_glDrawTexfOES = unsafePerformIO $ getCommand "glDrawTexfOES"
14321433

14331434
glDrawTexfvOES
14341435
:: MonadIO m
1435-
=> Ptr GLfloat -- ^ @coords@.
1436+
=> Ptr GLfloat -- ^ @coords@ pointing to @5@ elements of type @GLfloat@.
14361437
-> m ()
14371438
glDrawTexfvOES v1 = liftIO $ dyn42 ptr_glDrawTexfvOES v1
14381439

@@ -1442,6 +1443,7 @@ ptr_glDrawTexfvOES = unsafePerformIO $ getCommand "glDrawTexfvOES"
14421443

14431444
-- glDrawTexiOES ---------------------------------------------------------------
14441445

1446+
-- | The vector equivalent of this command is 'glDrawTexivOES'.
14451447
glDrawTexiOES
14461448
:: MonadIO m
14471449
=> GLint -- ^ @x@.
@@ -1460,7 +1462,7 @@ ptr_glDrawTexiOES = unsafePerformIO $ getCommand "glDrawTexiOES"
14601462

14611463
glDrawTexivOES
14621464
:: MonadIO m
1463-
=> Ptr GLint -- ^ @coords@.
1465+
=> Ptr GLint -- ^ @coords@ pointing to @5@ elements of type @GLint@.
14641466
-> m ()
14651467
glDrawTexivOES v1 = liftIO $ dyn44 ptr_glDrawTexivOES v1
14661468

@@ -1470,6 +1472,7 @@ ptr_glDrawTexivOES = unsafePerformIO $ getCommand "glDrawTexivOES"
14701472

14711473
-- glDrawTexsOES ---------------------------------------------------------------
14721474

1475+
-- | The vector equivalent of this command is 'glDrawTexsvOES'.
14731476
glDrawTexsOES
14741477
:: MonadIO m
14751478
=> GLshort -- ^ @x@.
@@ -1488,7 +1491,7 @@ ptr_glDrawTexsOES = unsafePerformIO $ getCommand "glDrawTexsOES"
14881491

14891492
glDrawTexsvOES
14901493
:: MonadIO m
1491-
=> Ptr GLshort -- ^ @coords@.
1494+
=> Ptr GLshort -- ^ @coords@ pointing to @5@ elements of type @GLshort@.
14921495
-> m ()
14931496
glDrawTexsvOES v1 = liftIO $ dyn46 ptr_glDrawTexsvOES v1
14941497

@@ -1520,6 +1523,7 @@ ptr_glDrawTextureNV = unsafePerformIO $ getCommand "glDrawTextureNV"
15201523

15211524
-- glDrawTexxOES ---------------------------------------------------------------
15221525

1526+
-- | The vector equivalent of this command is 'glDrawTexxvOES'.
15231527
glDrawTexxOES
15241528
:: MonadIO m
15251529
=> GLfixed -- ^ @x@.
@@ -1538,7 +1542,7 @@ ptr_glDrawTexxOES = unsafePerformIO $ getCommand "glDrawTexxOES"
15381542

15391543
glDrawTexxvOES
15401544
:: MonadIO m
1541-
=> Ptr GLfixed -- ^ @coords@.
1545+
=> Ptr GLfixed -- ^ @coords@ pointing to @5@ elements of type @GLfixed@.
15421546
-> m ()
15431547
glDrawTexxvOES v1 = liftIO $ dyn110 ptr_glDrawTexxvOES v1
15441548

0 commit comments

Comments
 (0)