Skip to content

Commit 1cd1de8

Browse files
committed
Added OpenGL 4.6 support.
1 parent 337a2c1 commit 1cd1de8

File tree

6 files changed

+4969
-3
lines changed

6 files changed

+4969
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
3.2.7.0
22
-------
3-
* Updated OpenGL registry to 681c365c0..
3+
* Updated OpenGL registry to 681c365c0.
4+
* Added OpenGL 4.6 support.
45

56
3.2.6.0
67
-------

OpenGLRaw.cabal

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,7 @@ library
277277
Graphics.GL.Compatibility43
278278
Graphics.GL.Compatibility44
279279
Graphics.GL.Compatibility45
280+
Graphics.GL.Compatibility46
280281
Graphics.GL.Core30
281282
Graphics.GL.Core31
282283
Graphics.GL.Core32
@@ -287,6 +288,7 @@ library
287288
Graphics.GL.Core43
288289
Graphics.GL.Core44
289290
Graphics.GL.Core45
291+
Graphics.GL.Core46
290292
Graphics.GL.EXT
291293
Graphics.GL.EXT.ABGR
292294
Graphics.GL.EXT.BGRA

RegistryProcessor/src/Main.hs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ openGLVersions api =
6060
, "4.3"
6161
, "4.4"
6262
, "4.5"
63+
, "4.6"
6364
]
6465
"gles1" -> ["1.0"]
6566
"gles2" -> ["2.0", "3.0", "3.1", "3.2"]

src/Graphics/GL.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
--------------------------------------------------------------------------------
1515

1616
module Graphics.GL (
17-
module Graphics.GL.Compatibility45,
17+
module Graphics.GL.Compatibility46,
1818
module Graphics.GL.GetProcAddress,
1919
module Graphics.GL.AMD,
2020
module Graphics.GL.APPLE,
@@ -46,7 +46,7 @@ module Graphics.GL (
4646
module Graphics.GL.WIN
4747
) where
4848

49-
import Graphics.GL.Compatibility45
49+
import Graphics.GL.Compatibility46
5050
import Graphics.GL.GetProcAddress
5151
import Graphics.GL.AMD
5252
import Graphics.GL.APPLE

0 commit comments

Comments
 (0)