3d audio
This commit is contained in:
parent
68e1228193
commit
97152d066c
9 changed files with 56 additions and 12 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue