File: shader_subgroup.py

package info (click to toggle)
pyopengl 3.1.6%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 14,732 kB
  • sloc: python: 106,016; makefile: 8
file content (26 lines) | stat: -rw-r--r-- 1,516 bytes parent folder | download | duplicates (3)
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
'''Autogenerated by xml_generate script, do not edit!'''
from OpenGL import platform as _p, arrays
# Code generation uses this
from OpenGL.raw.GL import _types as _cs
# End users want this...
from OpenGL.raw.GL._types import *
from OpenGL.raw.GL import _errors
from OpenGL.constant import Constant as _C

import ctypes
_EXTENSION_NAME = 'GL_KHR_shader_subgroup'
def _f( function ):
    return _p.createFunction( function,_p.PLATFORM.GL,'GL_KHR_shader_subgroup',error_checker=_errors._error_checker)
GL_SUBGROUP_FEATURE_ARITHMETIC_BIT_KHR=_C('GL_SUBGROUP_FEATURE_ARITHMETIC_BIT_KHR',0x00000004)
GL_SUBGROUP_FEATURE_BALLOT_BIT_KHR=_C('GL_SUBGROUP_FEATURE_BALLOT_BIT_KHR',0x00000008)
GL_SUBGROUP_FEATURE_BASIC_BIT_KHR=_C('GL_SUBGROUP_FEATURE_BASIC_BIT_KHR',0x00000001)
GL_SUBGROUP_FEATURE_CLUSTERED_BIT_KHR=_C('GL_SUBGROUP_FEATURE_CLUSTERED_BIT_KHR',0x00000040)
GL_SUBGROUP_FEATURE_QUAD_BIT_KHR=_C('GL_SUBGROUP_FEATURE_QUAD_BIT_KHR',0x00000080)
GL_SUBGROUP_FEATURE_SHUFFLE_BIT_KHR=_C('GL_SUBGROUP_FEATURE_SHUFFLE_BIT_KHR',0x00000010)
GL_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT_KHR=_C('GL_SUBGROUP_FEATURE_SHUFFLE_RELATIVE_BIT_KHR',0x00000020)
GL_SUBGROUP_FEATURE_VOTE_BIT_KHR=_C('GL_SUBGROUP_FEATURE_VOTE_BIT_KHR',0x00000002)
GL_SUBGROUP_QUAD_ALL_STAGES_KHR=_C('GL_SUBGROUP_QUAD_ALL_STAGES_KHR',0x9535)
GL_SUBGROUP_SIZE_KHR=_C('GL_SUBGROUP_SIZE_KHR',0x9532)
GL_SUBGROUP_SUPPORTED_FEATURES_KHR=_C('GL_SUBGROUP_SUPPORTED_FEATURES_KHR',0x9534)
GL_SUBGROUP_SUPPORTED_STAGES_KHR=_C('GL_SUBGROUP_SUPPORTED_STAGES_KHR',0x9533)