Commit 065c15c0 authored by hybrid's avatar hybrid

Make real use of bitfield

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@2358 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 188ce8b5
...@@ -384,11 +384,12 @@ struct SSkinMeshBuffer : public IMeshBuffer ...@@ -384,11 +384,12 @@ struct SSkinMeshBuffer : public IMeshBuffer
video::SMaterial Material; video::SMaterial Material;
video::E_VERTEX_TYPE VertexType; video::E_VERTEX_TYPE VertexType;
core::aabbox3d<f32> BoundingBox;
// hardware mapping hint // hardware mapping hint
E_HARDWARE_MAPPING MappingHint_Vertex; E_HARDWARE_MAPPING MappingHint_Vertex:3;
E_HARDWARE_MAPPING MappingHint_Index; E_HARDWARE_MAPPING MappingHint_Index:3;
core::aabbox3d<f32> BoundingBox;
bool BoundingBoxNeedsRecalculated:1; bool BoundingBoxNeedsRecalculated:1;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment