File: test_glutinit.py

package info (click to toggle)
pyopengl 3.0.0~b6-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 5,696 kB
  • ctags: 26,182
  • sloc: python: 34,233; ansic: 70; sh: 26; makefile: 15
file content (26 lines) | stat: -rw-r--r-- 513 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from OpenGL.GL import *
from OpenGL.GLUT import *
from OpenGL.GLU import *
import time

resX,resY = (400,300 )

def display( ):
	glutSetWindow(window);
	glClearColor (0.0, 0.0, (time.time()%1.0)/1.0, 0.0)
	glClear (GL_COLOR_BUFFER_BIT)
	glFlush ()
	glutSwapBuffers()


if __name__ == "__main__":
	glutInit([])
	glutInitDisplayMode(GLUT_RGBA | GLUT_DOUBLE | GLUT_DEPTH)

	glutInitWindowSize(resX, resY)

	glutInitWindowPosition(0, 0)
	window = glutCreateWindow("hello")
	glutDisplayFunc(display)
	glutMainLoop()