mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-12 19:31:41 +00:00
Linux implementation. Include changes for gcc x64.
This commit is contained in:
parent
4e52824a42
commit
4e9034854d
56 changed files with 1108 additions and 3075 deletions
|
|
@ -30,7 +30,7 @@ MatrixSet::MatrixSet()
|
|||
// this class will provide a place where aligned/specalized matrix math can take place.
|
||||
// We should be able to plug in any kind of platform-specific optimization
|
||||
// behind the delgates.
|
||||
AssertFatal( ((int)this & 0xF) == 0, "MatrixSet has been allocated off a 16-byte boundary!" );
|
||||
AssertFatal( ((intptr_t)this & 0xF) == 0, "MatrixSet has been allocated off a 16-byte boundary!" );
|
||||
|
||||
// Must be initialized by name, not a for(), it's macro magic
|
||||
MATRIX_SET_BIND_VALUE(ObjectToWorld);
|
||||
|
|
@ -47,4 +47,4 @@ MatrixSet::MatrixSet()
|
|||
|
||||
mViewSource = NULL;
|
||||
mProjectionSource = NULL;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue