Beleuchtung und Rendering ge?ndert, um Schatten zu erm?glichen.
This commit is contained in:
parent
1021d32f7c
commit
c3580f59f7
1 changed files with 8 additions and 3 deletions
|
@ -6,9 +6,14 @@ typedef union _MATRIX {
|
||||||
float f[16];
|
float f[16];
|
||||||
} MATRIX;
|
} MATRIX;
|
||||||
|
|
||||||
typedef struct _VECTOR_VERTEX_ROTATION {
|
typedef union _VECTOR_VERTEX_ROTATION_COLOR {
|
||||||
float x, y, z;
|
struct {
|
||||||
} VECTOR, VERTEX, ROTATION;
|
float x, y, z;
|
||||||
|
};
|
||||||
|
struct {
|
||||||
|
float r, g, b;
|
||||||
|
};
|
||||||
|
} VECTOR, VERTEX, ROTATION, COLOR;
|
||||||
|
|
||||||
typedef struct _TEXCOORDS {
|
typedef struct _TEXCOORDS {
|
||||||
float s, t;
|
float s, t;
|
||||||
|
|
Reference in a new issue