glVertex4s function
GLAPI void GLAPIENTRY glVertex4s (GLshort x, GLshort y, GLshort z, GLshort w)
Implementation
void glVertex4s(int x, int y, int z, int w) {
final glVertex4sLookupFunction = libGL.lookupFunction<
Void Function(Int16 x, Int16 y, Int16 z, Int16 w),
void Function(int x, int y, int z, int w)>('glVertex4s');
return glVertex4sLookupFunction(x, y, z, w);
}