glTexCoord3s function

void glTexCoord3s(
  1. int s,
  2. int t,
  3. int r
)
GLAPI void GLAPIENTRY glTexCoord3s (GLshort s, GLshort t, GLshort r)

Implementation

void glTexCoord3s(int s, int t, int r) {
  final glTexCoord3sLookupFunction = libGL.lookupFunction<
      Void Function(Int16 s, Int16 t, Int16 r),
      void Function(int s, int t, int r)>('glTexCoord3s');
  return glTexCoord3sLookupFunction(s, t, r);
}