Skip to content

Commit 4cb5ea8

Browse files
committed
OpenGL registry bug fix aftermath. Bumped version to 2.13.2.0.
1 parent ff1c138 commit 4cb5ea8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

OpenGL.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: OpenGL
2-
version: 2.13.1.0
2+
version: 2.13.2.0
33
synopsis: A binding for the OpenGL graphics system
44
description:
55
A Haskell binding for the OpenGL graphics system (GL, version 4.5) and its
@@ -155,7 +155,7 @@ library
155155
transformers >= 0.2 && < 0.5,
156156
ObjectName >= 1.1 && < 1.2,
157157
StateVar >= 1.1 && < 1.2,
158-
OpenGLRaw >= 2.5.5 && < 2.7,
158+
OpenGLRaw >= 2.6.1 && < 2.7,
159159
GLURaw >= 1.3 && < 1.6
160160
default-language: Haskell2010
161161
other-extensions:

src/Graphics/Rendering/OpenGL/GL/Framebuffer.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ clearNamedFramebuffer fbo cmd = case cmd of
388388
ClearStencilBuffer s ->
389389
with s $ glClearNamedFramebufferiv f gl_STENCIL 0
390390
ClearDepthAndStencilBuffers d s ->
391-
glClearNamedFramebufferfi f gl_DEPTH_STENCIL d s
391+
glClearNamedFramebufferfi f gl_DEPTH_STENCIL 0 d s
392392
where f = framebufferID fbo
393393

394394
--------------------------------------------------------------------------------

0 commit comments

Comments
 (0)