Skip to content

Commit 87abe6e

Browse files
committed
Pep8
1 parent b18fae4 commit 87abe6e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

demosys/opengl/fbo.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ def create(cls, width, height, depth=False,
135135
wrap_s=GL.GL_CLAMP_TO_EDGE, wrap_t=GL.GL_CLAMP_TO_EDGE, wrap_r=GL.GL_CLAMP_TO_EDGE)
136136
fbo.add_color_attachment(c)
137137
if depth:
138-
d = Texture.create_2d(width=width, height=height, internal_format=GL.GL_DEPTH24_STENCIL8, format=GL.GL_DEPTH_COMPONENT,
138+
d = Texture.create_2d(width=width, height=height,
139+
internal_format=GL.GL_DEPTH24_STENCIL8, format=GL.GL_DEPTH_COMPONENT,
139140
wrap_s=GL.GL_CLAMP_TO_EDGE, wrap_t=GL.GL_CLAMP_TO_EDGE, wrap_r=GL.GL_CLAMP_TO_EDGE)
140141
fbo.set_depth_attachment(d)
141142
fbo.check_status()

0 commit comments

Comments
 (0)