glVertex4s function opengl

void glVertex4s(
  1. int x,
  2. int y,
  3. int z,
  4. int w,
)
GLAPI void GLAPIENTRY glVertex4s( GLshort x, GLshort y, GLshort z, GLshort w )

Implementation

void glVertex4s(int x, int y, int z, int w) {
  final glVertex4sAsFunction = _glVertex4s
      .cast<NativeFunction<Void Function(Int16 x, Int16 y, Int16 z, Int16 w)>>()
      .asFunction<void Function(int x, int y, int z, int w)>();
  return glVertex4sAsFunction(x, y, z, w);
}