glNormal3xvOes function opengl_glext

void glNormal3xvOes(
  1. Pointer<Int32> coords
)
GLAPI void APIENTRY glNormal3xvOES (const GLfixed *coords)

Implementation

void glNormal3xvOes(Pointer<Int32> coords) {
  final glNormal3xvOesAsFunction = _glNormal3xvOes
      .cast<NativeFunction<Void Function(Pointer<Int32> coords)>>()
      .asFunction<void Function(Pointer<Int32> coords)>();
  return glNormal3xvOesAsFunction(coords);
}