glVertexStream1fAti function opengl_glext

void glVertexStream1fAti(
  1. int stream,
  2. double x
)
GLAPI void APIENTRY glVertexStream1fATI (GLenum stream, GLfloat x)

Implementation

void glVertexStream1fAti(int stream, double x) {
  final glVertexStream1fAtiAsFunction = _glVertexStream1fAti
      .cast<NativeFunction<Void Function(Uint32 stream, Float x)>>()
      .asFunction<void Function(int stream, double x)>();
  return glVertexStream1fAtiAsFunction(stream, x);
}