Skip to content

Commit

Permalink
Merge pull request #133 from yuyu2172/vertices-out
Browse files Browse the repository at this point in the history
Change the default parameter value of GeometryShader
  • Loading branch information
rougier committed Feb 14, 2018
2 parents 3881fe9 + 1a34e2b commit 6db0bf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glumpy/gloo/shader.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ class GeometryShader(Shader):


def __init__(self, code=None,
vertices_out=0, input_type=None, output_type=None, version="120"):
vertices_out=None, input_type=None, output_type=None, version="120"):
Shader.__init__(self, gl.GL_GEOMETRY_SHADER_EXT, code, version)

self._vertices_out = vertices_out
Expand Down

0 comments on commit 6db0bf0

Please sign in to comment.