add clouds

This commit is contained in:
Nishi 2026-01-25 01:56:36 +09:00
commit c1a236ffe2
Signed by: nishi
GPG key ID: 27EF69B208EB9343
14 changed files with 109 additions and 34 deletions

View file

@ -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);

View file

@ -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 {