glGenSymbolsExt function opengl_glext

int glGenSymbolsExt(
  1. int datatype,
  2. int storagetype,
  3. int range,
  4. int components,
)
GLAPI GLuint APIENTRY glGenSymbolsEXT (GLenum datatype, GLenum storagetype, GLenum range, GLuint components)

Implementation

int glGenSymbolsExt(int datatype, int storagetype, int range, int components) {
  final glGenSymbolsExtAsFunction = _glGenSymbolsExt
      .cast<
        NativeFunction<
          Uint32 Function(
            Uint32 datatype,
            Uint32 storagetype,
            Uint32 range,
            Uint32 components,
          )
        >
      >()
      .asFunction<
        int Function(int datatype, int storagetype, int range, int components)
      >();
  return glGenSymbolsExtAsFunction(datatype, storagetype, range, components);
}