add clouds
This commit is contained in:
parent
3af095361d
commit
c1a236ffe2
14 changed files with 109 additions and 34 deletions
|
|
@ -56,6 +56,7 @@ GSDECL GLuint GSGLBeginList(GSGL gl);
|
|||
GSDECL void GSGLEndList(GSGL gl);
|
||||
GSDECL void GSGLCallList(GSGL gl, GLuint list);
|
||||
GSDECL void GSGLSetColor(GSGL gl, GSVector4 color);
|
||||
GSDECL void GSGLClearDepth(GSGL gl);
|
||||
|
||||
/* gl_camera.c */
|
||||
GSDECL void GSGLCameraPerspective(GSGL gl, GSNumber width, GSNumber height);
|
||||
|
|
|
|||
|
|
@ -130,6 +130,11 @@ struct _GSSkyBox {
|
|||
GLuint back;
|
||||
GLuint up;
|
||||
GLuint down;
|
||||
|
||||
GLuint cloud0;
|
||||
GLuint cloud1;
|
||||
|
||||
GSNumber tick;
|
||||
};
|
||||
|
||||
struct _GSModelFace {
|
||||
|
|
@ -173,6 +178,7 @@ struct _GSEngine {
|
|||
GSResourceKV* resource;
|
||||
int width;
|
||||
int height;
|
||||
GSNumber tps;
|
||||
};
|
||||
|
||||
struct _GSFile {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue