mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-13 15:44:36 +00:00
Fixed OPCODE problems with x64.
This commit is contained in:
parent
5103ba22e2
commit
46ffb3455b
4 changed files with 18 additions and 18 deletions
|
|
@ -43,7 +43,7 @@
|
|||
/* Following data always belong to the BV-tree, regardless of what the tree actually contains.*/ \
|
||||
/* Whatever happens we need the two children and the enclosing volume.*/ \
|
||||
volume mBV; /* Global bounding-volume enclosing all the node-related primitives */ \
|
||||
udword mPos; /* "Positive" & "Negative" children */
|
||||
size_t mPos; /* "Positive" & "Negative" children */
|
||||
#else
|
||||
//! TO BE DOCUMENTED
|
||||
#define IMPLEMENT_TREE(base_class, volume) \
|
||||
|
|
@ -68,8 +68,8 @@
|
|||
/* Following data always belong to the BV-tree, regardless of what the tree actually contains.*/ \
|
||||
/* Whatever happens we need the two children and the enclosing volume.*/ \
|
||||
volume mBV; /* Global bounding-volume enclosing all the node-related primitives */ \
|
||||
udword mPos; /* "Positive" child */ \
|
||||
udword mNeg; /* "Negative" child */
|
||||
size_t mPos; /* "Positive" child */ \
|
||||
size_t mNeg; /* "Negative" child */
|
||||
#endif
|
||||
|
||||
typedef void (*CullingCallback) (udword nb_primitives, udword* node_primitives, BOOL need_clipping, void* user_data);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue