aboutsummaryrefslogtreecommitdiffstats
path: root/examples/opengl/contextinfo/contextinfo.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/opengl/contextinfo/contextinfo.py')
-rw-r--r--examples/opengl/contextinfo/contextinfo.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/examples/opengl/contextinfo/contextinfo.py b/examples/opengl/contextinfo/contextinfo.py
index d115637c5..ed7b8ca72 100644
--- a/examples/opengl/contextinfo/contextinfo.py
+++ b/examples/opengl/contextinfo/contextinfo.py
@@ -106,8 +106,8 @@ fragment_shader_source = dedent("""
}
""")
-vertices = numpy.array([0, 0.707, -0.5, -0.5, 0.5, -0.5], dtype = numpy.float32)
-colors = numpy.array([1, 0, 0, 0, 1, 0, 0, 0, 1], dtype = numpy.float32)
+vertices = numpy.array([0, 0.707, -0.5, -0.5, 0.5, -0.5], dtype=numpy.float32)
+colors = numpy.array([1, 0, 0, 0, 1, 0, 0, 0, 1], dtype=numpy.float32)
def print_surface_format(surface_format):
@@ -116,6 +116,7 @@ def print_surface_format(surface_format):
minor = surface_format.minorVersion()
return f"{profile_name} version {major}.{minor}"
+
class RenderWindow(QWindow):
def __init__(self, format):
super().__init__()
@@ -170,7 +171,7 @@ class RenderWindow(QWindow):
self.vbo.release()
vao_binder = QOpenGLVertexArrayObject.Binder(self.vao)
- if self.vao.isCreated(): # have VAO support, use it
+ if self.vao.isCreated(): # have VAO support, use it
self.setup_vertex_attribs()
def setup_vertex_attribs(self):
@@ -216,7 +217,7 @@ class RenderWindow(QWindow):
if self.vao.isCreated():
self.vao.bind()
- else: # no VAO support, set the vertex attribute arrays now
+ else: # no VAO support, set the vertex attribute arrays now
self.setup_vertex_attribs()
functions.glDrawArrays(GL.GL_TRIANGLES, 0, 3)
@@ -247,6 +248,7 @@ class RenderWindow(QWindow):
self.context.doneCurrent()
return text
+
class MainWindow(QWidget):
def __init__(self):
super().__init__()
@@ -266,6 +268,7 @@ class MainWindow(QWidget):
text = f"{build}\n\nPython {sys.version}\n\n{gl}"
self._plain_text_edit.setPlainText(text)
+
if __name__ == '__main__':
parser = ArgumentParser(description="contextinfo", formatter_class=RawTextHelpFormatter)
parser.add_argument('--gles', '-g', action='store_true',