This commit is contained in:
Nishi 2026-01-30 23:07:23 +09:00
commit 97152d066c
Signed by: nishi
GPG key ID: 27EF69B208EB9343
9 changed files with 56 additions and 12 deletions

View file

@ -23,6 +23,7 @@ GSDECL void GSMathRowToColumn3x3(GSMatrix3x3 out, GSMatrix3x3 in);
GSDECL void GSMath3x3To4x4(GSMatrix4x4 out, GSMatrix3x3 in);
GSDECL GSNumber GSMathCot(GSNumber x);
GSDECL GSNumber GSMathClosestPOT(GSNumber x);
GSDECL GSNumber GSMathLength3(GSVector3 vec);
#define GSMathColumnToRow4x4 GSMathRowToColumn4x4
#define GSMathColumnToRow3x3 GSMathRowToColumn3x3

View file

@ -260,6 +260,10 @@ struct _GSSound {
GSSoundResetCallback reset;
GSSoundReadCallback read;
GSSoundCloseCallback close;
GSVector3 position;
GSBool is_3d;
GSNumber volume;
};
struct _GSSoundDriver {
@ -324,7 +328,7 @@ struct _GSClient {
int glyph_bold_height;
GSVector3 look_at;
GSVector3 camera;
GSVector3 position;
GSVector4 light0;
GSSkyBox skybox;
GSBool skybox_enabled;