Class GLOESByteCoordinates
java.lang.Object
overrungl.opengl.oes.GLOESByteCoordinates
GL_OES_byte_coordinates
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
MultiTexCoord1bOES
(int texture, byte s) InvokesglMultiTexCoord1bOES
.void
MultiTexCoord1bvOES
(int texture, @NonNull MemorySegment coords) InvokesglMultiTexCoord1bvOES
.void
MultiTexCoord2bOES
(int texture, byte s, byte t) InvokesglMultiTexCoord2bOES
.void
MultiTexCoord2bvOES
(int texture, @NonNull MemorySegment coords) InvokesglMultiTexCoord2bvOES
.void
MultiTexCoord3bOES
(int texture, byte s, byte t, byte r) InvokesglMultiTexCoord3bOES
.void
MultiTexCoord3bvOES
(int texture, @NonNull MemorySegment coords) InvokesglMultiTexCoord3bvOES
.void
MultiTexCoord4bOES
(int texture, byte s, byte t, byte r, byte q) InvokesglMultiTexCoord4bOES
.void
MultiTexCoord4bvOES
(int texture, @NonNull MemorySegment coords) InvokesglMultiTexCoord4bvOES
.void
TexCoord1bOES
(byte s) InvokesglTexCoord1bOES
.void
TexCoord1bvOES
(@NonNull MemorySegment coords) InvokesglTexCoord1bvOES
.void
TexCoord2bOES
(byte s, byte t) InvokesglTexCoord2bOES
.void
TexCoord2bvOES
(@NonNull MemorySegment coords) InvokesglTexCoord2bvOES
.void
TexCoord3bOES
(byte s, byte t, byte r) InvokesglTexCoord3bOES
.void
TexCoord3bvOES
(@NonNull MemorySegment coords) InvokesglTexCoord3bvOES
.void
TexCoord4bOES
(byte s, byte t, byte r, byte q) InvokesglTexCoord4bOES
.void
TexCoord4bvOES
(@NonNull MemorySegment coords) InvokesglTexCoord4bvOES
.void
Vertex2bOES
(byte x, byte y) InvokesglVertex2bOES
.void
Vertex2bvOES
(@NonNull MemorySegment coords) InvokesglVertex2bvOES
.void
Vertex3bOES
(byte x, byte y, byte z) InvokesglVertex3bOES
.void
Vertex3bvOES
(@NonNull MemorySegment coords) InvokesglVertex3bvOES
.void
Vertex4bOES
(byte x, byte y, byte z, byte w) InvokesglVertex4bOES
.void
Vertex4bvOES
(@NonNull MemorySegment coords) InvokesglVertex4bvOES
.
-
Field Details
-
GL_BYTE
public static final int GL_BYTE- See Also:
-
-
Constructor Details
-
GLOESByteCoordinates
-
-
Method Details
-
MultiTexCoord1bOES
public void MultiTexCoord1bOES(int texture, byte s) Invokes
glMultiTexCoord1bOES
.void glMultiTexCoord1bOES((unsigned int) GLenum texture, ((signed char) khronos_int8_t) GLbyte s);
-
MultiTexCoord1bvOES
Invokes
glMultiTexCoord1bvOES
.void glMultiTexCoord1bvOES((unsigned int) GLenum texture, const GLbyte* coords);
-
MultiTexCoord2bOES
public void MultiTexCoord2bOES(int texture, byte s, byte t) Invokes
glMultiTexCoord2bOES
.void glMultiTexCoord2bOES((unsigned int) GLenum texture, ((signed char) khronos_int8_t) GLbyte s, ((signed char) khronos_int8_t) GLbyte t);
-
MultiTexCoord2bvOES
Invokes
glMultiTexCoord2bvOES
.void glMultiTexCoord2bvOES((unsigned int) GLenum texture, const GLbyte* coords);
-
MultiTexCoord3bOES
public void MultiTexCoord3bOES(int texture, byte s, byte t, byte r) Invokes
glMultiTexCoord3bOES
.void glMultiTexCoord3bOES((unsigned int) GLenum texture, ((signed char) khronos_int8_t) GLbyte s, ((signed char) khronos_int8_t) GLbyte t, ((signed char) khronos_int8_t) GLbyte r);
-
MultiTexCoord3bvOES
Invokes
glMultiTexCoord3bvOES
.void glMultiTexCoord3bvOES((unsigned int) GLenum texture, const GLbyte* coords);
-
MultiTexCoord4bOES
public void MultiTexCoord4bOES(int texture, byte s, byte t, byte r, byte q) Invokes
glMultiTexCoord4bOES
.void glMultiTexCoord4bOES((unsigned int) GLenum texture, ((signed char) khronos_int8_t) GLbyte s, ((signed char) khronos_int8_t) GLbyte t, ((signed char) khronos_int8_t) GLbyte r, ((signed char) khronos_int8_t) GLbyte q);
-
MultiTexCoord4bvOES
Invokes
glMultiTexCoord4bvOES
.void glMultiTexCoord4bvOES((unsigned int) GLenum texture, const GLbyte* coords);
-
TexCoord1bOES
public void TexCoord1bOES(byte s) Invokes
glTexCoord1bOES
.void glTexCoord1bOES(((signed char) khronos_int8_t) GLbyte s);
-
TexCoord1bvOES
Invokes
glTexCoord1bvOES
.void glTexCoord1bvOES(const GLbyte* coords);
-
TexCoord2bOES
public void TexCoord2bOES(byte s, byte t) Invokes
glTexCoord2bOES
.void glTexCoord2bOES(((signed char) khronos_int8_t) GLbyte s, ((signed char) khronos_int8_t) GLbyte t);
-
TexCoord2bvOES
Invokes
glTexCoord2bvOES
.void glTexCoord2bvOES(const GLbyte* coords);
-
TexCoord3bOES
public void TexCoord3bOES(byte s, byte t, byte r) Invokes
glTexCoord3bOES
.void glTexCoord3bOES(((signed char) khronos_int8_t) GLbyte s, ((signed char) khronos_int8_t) GLbyte t, ((signed char) khronos_int8_t) GLbyte r);
-
TexCoord3bvOES
Invokes
glTexCoord3bvOES
.void glTexCoord3bvOES(const GLbyte* coords);
-
TexCoord4bOES
public void TexCoord4bOES(byte s, byte t, byte r, byte q) Invokes
glTexCoord4bOES
.void glTexCoord4bOES(((signed char) khronos_int8_t) GLbyte s, ((signed char) khronos_int8_t) GLbyte t, ((signed char) khronos_int8_t) GLbyte r, ((signed char) khronos_int8_t) GLbyte q);
-
TexCoord4bvOES
Invokes
glTexCoord4bvOES
.void glTexCoord4bvOES(const GLbyte* coords);
-
Vertex2bOES
public void Vertex2bOES(byte x, byte y) Invokes
glVertex2bOES
.void glVertex2bOES(((signed char) khronos_int8_t) GLbyte x, ((signed char) khronos_int8_t) GLbyte y);
-
Vertex2bvOES
Invokes
glVertex2bvOES
.void glVertex2bvOES(const GLbyte* coords);
-
Vertex3bOES
public void Vertex3bOES(byte x, byte y, byte z) Invokes
glVertex3bOES
.void glVertex3bOES(((signed char) khronos_int8_t) GLbyte x, ((signed char) khronos_int8_t) GLbyte y, ((signed char) khronos_int8_t) GLbyte z);
-
Vertex3bvOES
Invokes
glVertex3bvOES
.void glVertex3bvOES(const GLbyte* coords);
-
Vertex4bOES
public void Vertex4bOES(byte x, byte y, byte z, byte w) Invokes
glVertex4bOES
.void glVertex4bOES(((signed char) khronos_int8_t) GLbyte x, ((signed char) khronos_int8_t) GLbyte y, ((signed char) khronos_int8_t) GLbyte z, ((signed char) khronos_int8_t) GLbyte w);
-
Vertex4bvOES
Invokes
glVertex4bvOES
.void glVertex4bvOES(const GLbyte* coords);
-