File: test_instanced_draw_detect.py

package info (click to toggle)
pyopengl 3.1.10%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,024 kB
  • sloc: python: 108,056; sh: 13; makefile: 8
file content (40 lines) | stat: -rw-r--r-- 951 bytes parent folder | download | duplicates (2)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from __future__ import print_function
import sys
from OpenGL.GL import *
from OpenGL.GLUT import *
from OpenGL.extensions import alternate
from OpenGL.GL.ARB.draw_instanced import *
from OpenGL.GL.EXT.draw_instanced import *


def detect():
    glutInit([])
    glutInitDisplayMode(GLUT_RGBA | GLUT_DOUBLE | GLUT_DEPTH)
    glutInitWindowSize(200, 200)

    glutCreateWindow("Detection")

    functions = (
        glDrawArraysInstanced,
        glDrawArraysInstancedARB,
        glDrawArraysInstancedEXT,
        # glDrawArraysInstancedNV, is GLES only
    )

    for function in functions:
        print(function.__name__, bool(function))

    any = alternate(*functions)

    print(any, bool(any))
    sys.stdout.write('OK\n')
    sys.stdout.flush()
    try:
        if fgDeinitialize:
            fgDeinitialize(False)
    except NameError:
        pass  # Older PyOpenGL, you may see a seg-fault here...


if __name__ == "__main__":
    detect()