- fix application crash introduced by [r4838];
This commit is contained in:
parent
589960f91b
commit
44051ee09f
|
@ -522,13 +522,13 @@ struct POLYLIST {
|
||||||
|
|
||||||
struct VERT {
|
struct VERT {
|
||||||
// Align to 16 for SSE instructions to work
|
// Align to 16 for SSE instructions to work
|
||||||
union {
|
CACHE_ALIGN union {
|
||||||
float coord[4];
|
float coord[4];
|
||||||
struct {
|
struct {
|
||||||
float x,y,z,w;
|
float x,y,z,w;
|
||||||
};
|
};
|
||||||
} DS_ALIGN(16);
|
};
|
||||||
union {
|
CACHE_ALIGN union {
|
||||||
float texcoord[2];
|
float texcoord[2];
|
||||||
struct {
|
struct {
|
||||||
float u,v;
|
float u,v;
|
||||||
|
|
Loading…
Reference in New Issue