23 lines
456 B
C
Executable File
23 lines
456 B
C
Executable File
#ifndef NET_MINECRAFT_CLIENT_RENDERER__VertexDecl_H__
|
|
#define NET_MINECRAFT_CLIENT_RENDERER__VertexDecl_H__
|
|
|
|
typedef struct VertexDeclPTC
|
|
{
|
|
GLfloat x, y, z;
|
|
GLfloat u, v;
|
|
GLuint color;
|
|
|
|
} VertexDeclPTC;
|
|
|
|
typedef struct VertexDeclPTCN
|
|
{
|
|
GLfloat x, y, z;
|
|
GLfloat u, v;
|
|
GLuint color;
|
|
// GLuint normal; // trying a new thing
|
|
GLfloat nx, ny, nz;
|
|
|
|
} VertexDeclPTCN;
|
|
|
|
#endif /*#ifndef NET_MINECRAFT_CLIENT_RENDERER__VertexDecl_H__ */
|