mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
feat(profile): update 3.3.5a profile
This commit is contained in:
parent
9053d61b6b
commit
e1bab2b375
186 changed files with 1204 additions and 43942 deletions
55
profile/3.3.5a-windows-386/include/tempest/matrix.h
Normal file
55
profile/3.3.5a-windows-386/include/tempest/matrix.h
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
#ifndef TEMPEST_MATRIX_H
|
||||
#define TEMPEST_MATRIX_H
|
||||
|
||||
DECLARE_STRUCT(C33Matrix);
|
||||
DECLARE_STRUCT(C34Matrix);
|
||||
DECLARE_STRUCT(C44Matrix);
|
||||
|
||||
struct C33Matrix {
|
||||
float a0;
|
||||
float a1;
|
||||
float a2;
|
||||
float b0;
|
||||
float b1;
|
||||
float b2;
|
||||
float c0;
|
||||
float c1;
|
||||
float c2;
|
||||
};
|
||||
|
||||
struct C34Matrix {
|
||||
float a0;
|
||||
float a1;
|
||||
float a2;
|
||||
float b0;
|
||||
float b1;
|
||||
float b2;
|
||||
float c0;
|
||||
float c1;
|
||||
float c2;
|
||||
float d0;
|
||||
float d1;
|
||||
float d2;
|
||||
};
|
||||
|
||||
struct C44Matrix {
|
||||
float a0;
|
||||
float a1;
|
||||
float a2;
|
||||
float a3;
|
||||
float b0;
|
||||
float b1;
|
||||
float b2;
|
||||
float b3;
|
||||
float c0;
|
||||
float c1;
|
||||
float c2;
|
||||
float c3;
|
||||
float d0;
|
||||
float d1;
|
||||
float d2;
|
||||
float d3;
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue