mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-11 12:45:05 +01:00
gl_rasterizer: Use GLvec* instead of C arrays
This commit is contained in:
parent
7bffd7c1b0
commit
d6cd1a8712
@ -104,14 +104,14 @@ private:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
GLfloat position[4];
|
GLvec4 position;
|
||||||
GLfloat color[4];
|
GLvec4 color;
|
||||||
GLfloat tex_coord0[2];
|
GLvec2 tex_coord0;
|
||||||
GLfloat tex_coord1[2];
|
GLvec2 tex_coord1;
|
||||||
GLfloat tex_coord2[2];
|
GLvec2 tex_coord2;
|
||||||
GLfloat tex_coord0_w;
|
GLfloat tex_coord0_w;
|
||||||
GLfloat normquat[4];
|
GLvec4 normquat;
|
||||||
GLfloat view[3];
|
GLvec3 view;
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Syncs entire status to match PICA registers
|
/// Syncs entire status to match PICA registers
|
||||||
|
Loading…
Reference in New Issue
Block a user