glRasterPos4s function

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

Implementation

void glRasterPos4s(int x, int y, int z, int w) {
  final glRasterPos4sLookupFunction = libGL.lookupFunction<
      Void Function(Int16 x, Int16 y, Int16 z, Int16 w),
      void Function(int x, int y, int z, int w)>('glRasterPos4s');
  return glRasterPos4sLookupFunction(x, y, z, w);
}