Fixes for style conformance: tabs to spaces

This commit is contained in:
matsukaze 2014-02-07 22:52:08 -05:00
parent f15ddff7e0
commit ab0b7bba00
4 changed files with 38 additions and 38 deletions

View file

@ -439,16 +439,16 @@ Menu::Menu() :
SLOT(trueColorize()));
addCheckableActionToQMenuAndActionHash(renderDebugMenu,
MenuOption::CullSharedFaces,
Qt::CTRL | Qt::SHIFT | Qt::Key_C,
false,
MenuOption::CullSharedFaces,
Qt::CTRL | Qt::SHIFT | Qt::Key_C,
false,
appInstance->getVoxels(),
SLOT(cullSharedFaces()));
addCheckableActionToQMenuAndActionHash(renderDebugMenu,
MenuOption::ShowCulledSharedFaces,
Qt::CTRL | Qt::SHIFT | Qt::Key_X,
false,
MenuOption::ShowCulledSharedFaces,
Qt::CTRL | Qt::SHIFT | Qt::Key_X,
false,
appInstance->getVoxels(),
SLOT(showCulledSharedFaces()));

View file

@ -199,18 +199,18 @@ public:
CHILD_UNKNOWN = -1
};
struct HalfSpace {
enum {
struct HalfSpace {
enum {
None = 0x00,
Bottom = 0x01,
Top = 0x02,
Right = 0x04,
Left = 0x08,
Near = 0x10,
Far = 0x20,
All = 0x3f,
};
};
Bottom = 0x01,
Top = 0x02,
Right = 0x04,
Left = 0x08,
Near = 0x10,
Far = 0x20,
All = 0x3f,
};
};
OctreeElement* getOrCreateChildElementAt(float x, float y, float z, float s);

View file

@ -14,10 +14,10 @@
#include "VoxelTree.h"
VoxelTreeElement::VoxelTreeElement(unsigned char* octalCode) :
OctreeElement(),
_primitiveIndex(0),
_exteriorOcclusions(OctreeElement::HalfSpace::All),
_interiorOcclusions(OctreeElement::HalfSpace::None)
OctreeElement(),
_primitiveIndex(0),
_exteriorOcclusions(OctreeElement::HalfSpace::All),
_interiorOcclusions(OctreeElement::HalfSpace::None)
{
init(octalCode);
};

View file

@ -71,10 +71,10 @@ public:
void setDensity(float density) { _density = density; }
float getDensity() const { return _density; }
void setInteriorOcclusions(unsigned char interiorExclusions);
void setExteriorOcclusions(unsigned char exteriorOcclusions);
unsigned char getExteriorOcclusions() const;
unsigned char getInteriorOcclusions() const;
void setInteriorOcclusions(unsigned char interiorExclusions);
void setExteriorOcclusions(unsigned char exteriorOcclusions);
unsigned char getExteriorOcclusions() const;
unsigned char getInteriorOcclusions() const;
// type safe versions of OctreeElement methods
VoxelTreeElement* getChildAtIndex(int childIndex) { return (VoxelTreeElement*)OctreeElement::getChildAtIndex(childIndex); }
@ -98,31 +98,31 @@ protected:
nodeColor _currentColor; /// Client only, false color of this voxel, 4 bytes
private:
int _primitiveIndex;
unsigned char _exteriorOcclusions; /// exterior shared partition boundaries that are completely occupied
unsigned char _interiorOcclusions; /// interior shared partition boundaries with siblings
int _primitiveIndex; ///< Unique identifier given by PrimitiveRenderer
unsigned char _exteriorOcclusions; ///< Exterior shared partition boundaries that are completely occupied
unsigned char _interiorOcclusions; ///< Interior shared partition boundaries with siblings
};
inline void VoxelTreeElement::setExteriorOcclusions(unsigned char exteriorOcclusions) {
if (_exteriorOcclusions != exteriorOcclusions) {
_exteriorOcclusions = exteriorOcclusions;
setDirtyBit();
}
if (_exteriorOcclusions != exteriorOcclusions) {
_exteriorOcclusions = exteriorOcclusions;
setDirtyBit();
}
}
inline void VoxelTreeElement::setInteriorOcclusions(unsigned char interiorOcclusions) {
if (_interiorOcclusions != interiorOcclusions) {
_interiorOcclusions = interiorOcclusions;
setDirtyBit();
}
if (_interiorOcclusions != interiorOcclusions) {
_interiorOcclusions = interiorOcclusions;
setDirtyBit();
}
}
inline unsigned char VoxelTreeElement::getInteriorOcclusions() const {
return _interiorOcclusions;
return _interiorOcclusions;
}
inline unsigned char VoxelTreeElement::getExteriorOcclusions() const {
return _exteriorOcclusions;
return _exteriorOcclusions;
}
#endif /* defined(__hifi__VoxelTreeElement__) */