Interface ImmediateModeRenderer
-
- All Known Implementing Classes:
ImmediateModeRenderer20
public interface ImmediateModeRenderer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbegin(Matrix4 projModelView, int primitiveType)voidcolor(float colorBits)voidcolor(float r, float g, float b, float a)voidcolor(Color color)voiddispose()voidend()voidflush()intgetMaxVertices()intgetNumVertices()voidnormal(float x, float y, float z)voidtexCoord(float u, float v)voidvertex(float x, float y, float z)
-
-
-
Method Detail
-
begin
void begin(Matrix4 projModelView, int primitiveType)
-
flush
void flush()
-
color
void color(Color color)
-
color
void color(float r, float g, float b, float a)
-
color
void color(float colorBits)
-
texCoord
void texCoord(float u, float v)
-
normal
void normal(float x, float y, float z)
-
vertex
void vertex(float x, float y, float z)
-
end
void end()
-
getNumVertices
int getNumVertices()
-
getMaxVertices
int getMaxVertices()
-
dispose
void dispose()
-
-