diff options
| -rw-r--r-- | indra/llappearance/llavatarjoint.cpp | 6 | ||||
| -rw-r--r-- | indra/llappearance/llavatarjointmesh.cpp | 14 | ||||
| -rw-r--r-- | indra/llappearance/llavatarjointmesh.h | 6 | ||||
| -rw-r--r-- | indra/llappearance/lldriverparam.cpp | 12 | ||||
| -rw-r--r-- | indra/llappearance/lldriverparam.h | 4 | ||||
| -rw-r--r-- | indra/llappearance/lllocaltextureobject.cpp | 10 | ||||
| -rw-r--r-- | indra/llappearance/lllocaltextureobject.h | 10 | ||||
| -rw-r--r-- | indra/llappearance/llpolymesh.cpp | 12 | ||||
| -rw-r--r-- | indra/llappearance/llpolymesh.h | 8 | ||||
| -rw-r--r-- | indra/llappearance/llpolymorph.cpp | 6 | ||||
| -rw-r--r-- | indra/llappearance/llpolymorph.h | 4 | ||||
| -rw-r--r-- | indra/llappearance/llpolyskeletaldistortion.cpp | 2 | ||||
| -rw-r--r-- | indra/llappearance/llpolyskeletaldistortion.h | 2 | ||||
| -rw-r--r-- | indra/llappearance/lltexglobalcolor.cpp | 2 | ||||
| -rw-r--r-- | indra/llappearance/lltexglobalcolor.h | 2 | ||||
| -rw-r--r-- | indra/llcharacter/llvisualparam.cpp | 2 | ||||
| -rw-r--r-- | indra/llcharacter/llvisualparam.h | 2 | 
17 files changed, 52 insertions, 52 deletions
diff --git a/indra/llappearance/llavatarjoint.cpp b/indra/llappearance/llavatarjoint.cpp index a1f775c801..e7bd831b49 100644 --- a/indra/llappearance/llavatarjoint.cpp +++ b/indra/llappearance/llavatarjoint.cpp @@ -169,8 +169,8 @@ void LLAvatarJoint::updateJointGeometry()  bool LLAvatarJoint::updateLOD(F32 pixel_area, bool activate)  { -	bool lod_changed = FALSE; -	bool found_lod = FALSE; +	bool lod_changed = false; +	bool found_lod = false;  	for (LLJoint* child : mChildren)  	{ @@ -187,7 +187,7 @@ bool LLAvatarJoint::updateLOD(F32 pixel_area, bool activate)  			if (pixel_area >= jointLOD || sDisableLOD)  			{  				lod_changed |= joint->updateLOD(pixel_area, TRUE); -				found_lod = TRUE; +				found_lod = true;  			}  			else  			{ diff --git a/indra/llappearance/llavatarjointmesh.cpp b/indra/llappearance/llavatarjointmesh.cpp index 97539afba6..f34e23a966 100644 --- a/indra/llappearance/llavatarjointmesh.cpp +++ b/indra/llappearance/llavatarjointmesh.cpp @@ -129,7 +129,7 @@ bool LLSkinJoint::setupSkinJoint( LLAvatarJoint *joint)  //-----------------------------------------------------------------------------  //----------------------------------------------------------------------------- -BOOL LLAvatarJointMesh::sPipelineRender = FALSE; +bool LLAvatarJointMesh::sPipelineRender = false;  U32 LLAvatarJointMesh::sClothingMaskImageName = 0;  LLColor4 LLAvatarJointMesh::sClothingInnerColor; @@ -149,7 +149,7 @@ LLAvatarJointMesh::LLAvatarJointMesh()  	mColor[2] = 1.0f;  	mColor[3] = 1.0f;  	mShiny = 0.0f; -	mCullBackFaces = TRUE; +	mCullBackFaces = true;  	mMesh = NULL; @@ -159,11 +159,11 @@ LLAvatarJointMesh::LLAvatarJointMesh()  	mFace = NULL;  	mMeshID = 0; -	mUpdateXform = FALSE; +	mUpdateXform = false; -	mValid = FALSE; +	mValid = false; -	mIsTransparent = FALSE; +	mIsTransparent = false;  } @@ -252,7 +252,7 @@ void LLAvatarJointMesh::setTexture( LLGLTexture *texture )  } -BOOL LLAvatarJointMesh::hasGLTexture() const +bool LLAvatarJointMesh::hasGLTexture() const  {  	return mTexture.notNull() && mTexture->hasGLTexture();  } @@ -272,7 +272,7 @@ void LLAvatarJointMesh::setLayerSet( LLTexLayerSet* layer_set )  	}  } -BOOL LLAvatarJointMesh::hasComposite() const +bool LLAvatarJointMesh::hasComposite() const  {  	return (mLayerSet && mLayerSet->hasComposite());  } diff --git a/indra/llappearance/llavatarjointmesh.h b/indra/llappearance/llavatarjointmesh.h index 1f12c3986f..a3f6a61218 100644 --- a/indra/llappearance/llavatarjointmesh.h +++ b/indra/llappearance/llavatarjointmesh.h @@ -79,7 +79,7 @@ protected:  	S32							mMeshID;  public: -	static BOOL					sPipelineRender; +	static bool					sPipelineRender;  	//RN: this is here for testing purposes  	static U32					sClothingMaskImageName;  	static LLColor4				sClothingInnerColor; @@ -104,14 +104,14 @@ public:  	// Sets the shape texture  	void setTexture( LLGLTexture *texture ); -	BOOL hasGLTexture() const; +	bool hasGLTexture() const;  	void setTestTexture( U32 name ) { mTestImageName = name; }  	// Sets layer set responsible for a dynamic shape texture (takes precedence over normal texture)  	void setLayerSet( LLTexLayerSet* layer_set ); -	BOOL hasComposite() const; +	bool hasComposite() const;  	// Gets the poly mesh  	LLPolyMesh *getMesh(); diff --git a/indra/llappearance/lldriverparam.cpp b/indra/llappearance/lldriverparam.cpp index 84b7c9ac41..83f2ab1266 100644 --- a/indra/llappearance/lldriverparam.cpp +++ b/indra/llappearance/lldriverparam.cpp @@ -187,7 +187,7 @@ LLDriverParam::~LLDriverParam()  {  } -BOOL LLDriverParam::setInfo(LLDriverParamInfo *info) +bool LLDriverParam::setInfo(LLDriverParamInfo *info)  {  	llassert(mInfo == NULL);  	if (info->mID < 0) @@ -466,20 +466,20 @@ void LLDriverParam::stopAnimating()  }  /*virtual*/  -BOOL LLDriverParam::linkDrivenParams(visual_param_mapper mapper, BOOL only_cross_params) +bool LLDriverParam::linkDrivenParams(visual_param_mapper mapper, bool only_cross_params)  { -	BOOL success = TRUE; +	BOOL success = true;  	for (LLDrivenEntryInfo& driven_info : getInfo()->mDrivenInfoList)  	{  		S32 driven_id = driven_info.mDrivenID;  		// check for already existing links. Do not overwrite. -		BOOL found = FALSE; +		bool found = false;  		for (auto& driven : mDriven)  		{  			if (driven.mInfo->mDrivenID == driven_id)  			{ -				found = TRUE; +				found = true;  			}  		} @@ -494,7 +494,7 @@ BOOL LLDriverParam::linkDrivenParams(visual_param_mapper mapper, BOOL only_cross  			}  			else  			{ -				success = FALSE; +				success = false;  			}  		}  	} diff --git a/indra/llappearance/lldriverparam.h b/indra/llappearance/lldriverparam.h index 915faf6b5d..610cd8c5e5 100644 --- a/indra/llappearance/lldriverparam.h +++ b/indra/llappearance/lldriverparam.h @@ -90,7 +90,7 @@ public:      // Special: These functions are overridden by child classes      LLDriverParamInfo* getInfo() const { return (LLDriverParamInfo*)mInfo; }      //   This sets mInfo and calls initialization functions -    BOOL					setInfo(LLDriverParamInfo* info); +    bool					setInfo(LLDriverParamInfo* info);      LLAvatarAppearance* getAvatarAppearance() { return mAvatarAppearance; }      const LLAvatarAppearance* getAvatarAppearance() const { return mAvatarAppearance; } @@ -104,7 +104,7 @@ public:      /*virtual*/ void				setWeight(F32 weight);      /*virtual*/ void				setAnimationTarget(F32 target_value);      /*virtual*/ void				stopAnimating(); -    /*virtual*/ BOOL				linkDrivenParams(visual_param_mapper mapper, BOOL only_cross_params); +    /*virtual*/ bool				linkDrivenParams(visual_param_mapper mapper, bool only_cross_params);      /*virtual*/ void				resetDrivenParams();      // LLViewerVisualParam Virtual functions diff --git a/indra/llappearance/lllocaltextureobject.cpp b/indra/llappearance/lllocaltextureobject.cpp index 7c17942c56..ff82e4e8e3 100644 --- a/indra/llappearance/lllocaltextureobject.cpp +++ b/indra/llappearance/lllocaltextureobject.cpp @@ -122,7 +122,7 @@ S32 LLLocalTextureObject::getDiscard() const  	return mDiscard;  } -BOOL LLLocalTextureObject::getBakedReady() const +bool LLLocalTextureObject::getBakedReady() const  {  	return mIsBakedReady;  } @@ -132,7 +132,7 @@ void LLLocalTextureObject::setImage(LLGLTexture* new_image)  	mImage = new_image;  } -BOOL LLLocalTextureObject::setTexLayer(LLTexLayer *new_tex_layer, U32 index) +bool LLLocalTextureObject::setTexLayer(LLTexLayer *new_tex_layer, U32 index)  {  	if (index >= getNumTexLayers() )  	{ @@ -156,7 +156,7 @@ BOOL LLLocalTextureObject::setTexLayer(LLTexLayer *new_tex_layer, U32 index)  	return true;  } -BOOL LLLocalTextureObject::addTexLayer(LLTexLayer *new_tex_layer, LLWearable *wearable) +bool LLLocalTextureObject::addTexLayer(LLTexLayer *new_tex_layer, LLWearable *wearable)  {  	if (new_tex_layer == NULL)  	{ @@ -169,7 +169,7 @@ BOOL LLLocalTextureObject::addTexLayer(LLTexLayer *new_tex_layer, LLWearable *we  	return true;  } -BOOL LLLocalTextureObject::addTexLayer(LLTexLayerTemplate *new_tex_layer, LLWearable *wearable) +bool LLLocalTextureObject::addTexLayer(LLTexLayerTemplate *new_tex_layer, LLWearable *wearable)  {  	if (new_tex_layer == NULL)  	{ @@ -182,7 +182,7 @@ BOOL LLLocalTextureObject::addTexLayer(LLTexLayerTemplate *new_tex_layer, LLWear  	return true;  } -BOOL LLLocalTextureObject::removeTexLayer(U32 index) +bool LLLocalTextureObject::removeTexLayer(U32 index)  {  	if (index >= getNumTexLayers())  	{ diff --git a/indra/llappearance/lllocaltextureobject.h b/indra/llappearance/lllocaltextureobject.h index 9b9f41fd19..5ca503baf4 100644 --- a/indra/llappearance/lllocaltextureobject.h +++ b/indra/llappearance/lllocaltextureobject.h @@ -53,13 +53,13 @@ public:  	U32 		getNumTexLayers() const;  	LLUUID		getID() const;  	S32			getDiscard() const; -	BOOL		getBakedReady() const; +	bool		getBakedReady() const;  	void setImage(LLGLTexture* new_image); -	BOOL setTexLayer(LLTexLayer *new_tex_layer, U32 index); -	BOOL addTexLayer(LLTexLayer *new_tex_layer, LLWearable *wearable); -	BOOL addTexLayer(LLTexLayerTemplate *new_tex_layer, LLWearable *wearable); -	BOOL removeTexLayer(U32 index); +	bool setTexLayer(LLTexLayer *new_tex_layer, U32 index); +	bool addTexLayer(LLTexLayer *new_tex_layer, LLWearable *wearable); +	bool addTexLayer(LLTexLayerTemplate *new_tex_layer, LLWearable *wearable); +	bool removeTexLayer(U32 index);  	void setID(LLUUID new_id);  	void setDiscard(S32 new_discard); diff --git a/indra/llappearance/llpolymesh.cpp b/indra/llappearance/llpolymesh.cpp index 8bfc6572d7..a51d4dec7e 100644 --- a/indra/llappearance/llpolymesh.cpp +++ b/indra/llappearance/llpolymesh.cpp @@ -225,7 +225,7 @@ U32 LLPolyMeshSharedData::getNumKB()  //-----------------------------------------------------------------------------  // LLPolyMeshSharedData::allocateVertexData()  //----------------------------------------------------------------------------- -BOOL LLPolyMeshSharedData::allocateVertexData( U32 numVertices ) +bool LLPolyMeshSharedData::allocateVertexData( U32 numVertices )  {          U32 i;          mBaseCoords = (LLVector4a*) ll_aligned_malloc_16(numVertices*sizeof(LLVector4a)); @@ -249,7 +249,7 @@ BOOL LLPolyMeshSharedData::allocateVertexData( U32 numVertices )  //-----------------------------------------------------------------------------  // LLPolyMeshSharedData::allocateFaceData()  //----------------------------------------------------------------------------- -BOOL LLPolyMeshSharedData::allocateFaceData( U32 numFaces ) +bool LLPolyMeshSharedData::allocateFaceData( U32 numFaces )  {          mFaces = new LLPolyFace[ numFaces ];          mNumFaces = numFaces; @@ -260,7 +260,7 @@ BOOL LLPolyMeshSharedData::allocateFaceData( U32 numFaces )  //-----------------------------------------------------------------------------  // LLPolyMeshSharedData::allocateJointNames()  //----------------------------------------------------------------------------- -BOOL LLPolyMeshSharedData::allocateJointNames( U32 numJointNames ) +bool LLPolyMeshSharedData::allocateJointNames( U32 numJointNames )  {          mJointNames = new std::string[ numJointNames ];          mNumJointNames = numJointNames; @@ -270,7 +270,7 @@ BOOL LLPolyMeshSharedData::allocateJointNames( U32 numJointNames )  //--------------------------------------------------------------------  // LLPolyMeshSharedData::loadMesh()  //-------------------------------------------------------------------- -BOOL LLPolyMeshSharedData::loadMesh( const std::string& fileName ) +bool LLPolyMeshSharedData::loadMesh( const std::string& fileName )  {          //-------------------------------------------------------------------------          // Open the file @@ -299,7 +299,7 @@ BOOL LLPolyMeshSharedData::loadMesh( const std::string& fileName )          //-------------------------------------------------------------------------          // Check for proper binary header          //------------------------------------------------------------------------- -        BOOL status = FALSE; +        bool status = false;          if ( strncmp(header, HEADER_BINARY, strlen(HEADER_BINARY)) == 0 )       /*Flawfinder: ignore*/          {                  LL_DEBUGS() << "Loading " << fileName << LL_ENDL; @@ -321,7 +321,7 @@ BOOL LLPolyMeshSharedData::loadMesh( const std::string& fileName )                  }                  if (!isLOD())                  { -                        mHasWeights = (hasWeights==0) ? FALSE : TRUE; +                        mHasWeights = (hasWeights==0) ? false : true;                  }                  //---------------------------------------------------------------- diff --git a/indra/llappearance/llpolymesh.h b/indra/llappearance/llpolymesh.h index 83659d9514..040868ea2a 100644 --- a/indra/llappearance/llpolymesh.h +++ b/indra/llappearance/llpolymesh.h @@ -119,17 +119,17 @@ private:  	void setRotation( const LLQuaternion &rot ) { mRotation = rot; }  	void setScale( const LLVector3 &scale ) { mScale = scale; } -	BOOL allocateVertexData( U32 numVertices ); +	bool allocateVertexData( U32 numVertices ); -	BOOL allocateFaceData( U32 numFaces ); +	bool allocateFaceData( U32 numFaces ); -	BOOL allocateJointNames( U32 numJointNames ); +	bool allocateJointNames( U32 numJointNames );  	// Retrieve the number of KB of memory used by this instance  	U32 getNumKB();  	// Load mesh data from file -	BOOL loadMesh( const std::string& fileName ); +	bool loadMesh( const std::string& fileName );  public:  	void genIndices(S32 offset); diff --git a/indra/llappearance/llpolymorph.cpp b/indra/llappearance/llpolymorph.cpp index 697beb239e..73811a550c 100644 --- a/indra/llappearance/llpolymorph.cpp +++ b/indra/llappearance/llpolymorph.cpp @@ -104,7 +104,7 @@ LLPolyMorphData::~LLPolyMorphData()  //-----------------------------------------------------------------------------  // loadBinary()  //----------------------------------------------------------------------------- -BOOL LLPolyMorphData::loadBinary(LLFILE *fp, LLPolyMeshSharedData *mesh) +bool LLPolyMorphData::loadBinary(LLFILE *fp, LLPolyMeshSharedData *mesh)  {  	S32 numVertices;  	S32 numRead; @@ -353,7 +353,7 @@ LLPolyMorphTarget::~LLPolyMorphTarget()  //-----------------------------------------------------------------------------  // setInfo()  //----------------------------------------------------------------------------- -BOOL LLPolyMorphTarget::setInfo(LLPolyMorphTargetInfo* info) +bool LLPolyMorphTarget::setInfo(LLPolyMorphTargetInfo* info)  {  	llassert(mInfo == NULL);  	if (info->mID < 0) @@ -408,7 +408,7 @@ BOOL LLPolyMorphTarget::setInfo(LLPolyMorphTargetInfo* info)  //-----------------------------------------------------------------------------  // parseData()  //----------------------------------------------------------------------------- -BOOL LLPolyMorphTarget::parseData(LLXmlTreeNode* node) +bool LLPolyMorphTarget::parseData(LLXmlTreeNode* node)  {  	LLPolyMorphTargetInfo* info = new LLPolyMorphTargetInfo; diff --git a/indra/llappearance/llpolymorph.h b/indra/llappearance/llpolymorph.h index 8388898dd6..f52e9dce8d 100644 --- a/indra/llappearance/llpolymorph.h +++ b/indra/llappearance/llpolymorph.h @@ -49,7 +49,7 @@ public:  	~LLPolyMorphData();  	LLPolyMorphData(const LLPolyMorphData &rhs); -	BOOL			loadBinary(LLFILE* fp, LLPolyMeshSharedData *mesh); +	bool			loadBinary(LLFILE* fp, LLPolyMeshSharedData *mesh);  	const std::string& getName() { return mName; }  public: @@ -154,7 +154,7 @@ public:  	// Special: These functions are overridden by child classes  	LLPolyMorphTargetInfo*	getInfo() const { return (LLPolyMorphTargetInfo*)mInfo; }  	//   This sets mInfo and calls initialization functions -	BOOL					setInfo(LLPolyMorphTargetInfo *info); +	bool					setInfo(LLPolyMorphTargetInfo *info);  	/*virtual*/ LLViewerVisualParam* cloneParam(LLWearable* wearable) const; diff --git a/indra/llappearance/llpolyskeletaldistortion.cpp b/indra/llappearance/llpolyskeletaldistortion.cpp index d730bab107..e8405ddb1f 100644 --- a/indra/llappearance/llpolyskeletaldistortion.cpp +++ b/indra/llappearance/llpolyskeletaldistortion.cpp @@ -133,7 +133,7 @@ LLPolySkeletalDistortion::~LLPolySkeletalDistortion()  {  } -BOOL LLPolySkeletalDistortion::setInfo(LLPolySkeletalDistortionInfo *info) +bool LLPolySkeletalDistortion::setInfo(LLPolySkeletalDistortionInfo *info)  {      if (info->mID < 0)      { diff --git a/indra/llappearance/llpolyskeletaldistortion.h b/indra/llappearance/llpolyskeletaldistortion.h index 4aa053b924..83d9b90d69 100644 --- a/indra/llappearance/llpolyskeletaldistortion.h +++ b/indra/llappearance/llpolyskeletaldistortion.h @@ -92,7 +92,7 @@ public:  	// Special: These functions are overridden by child classes  	LLPolySkeletalDistortionInfo*	getInfo() const { return (LLPolySkeletalDistortionInfo*)mInfo; }  	//   This sets mInfo and calls initialization functions -	BOOL							setInfo(LLPolySkeletalDistortionInfo *info); +	bool							setInfo(LLPolySkeletalDistortionInfo *info);  	/*virtual*/ LLViewerVisualParam* cloneParam(LLWearable* wearable) const; diff --git a/indra/llappearance/lltexglobalcolor.cpp b/indra/llappearance/lltexglobalcolor.cpp index eea7639cd8..b450b1284e 100644 --- a/indra/llappearance/lltexglobalcolor.cpp +++ b/indra/llappearance/lltexglobalcolor.cpp @@ -48,7 +48,7 @@ LLTexGlobalColor::~LLTexGlobalColor()  	//std::for_each(mParamColorList.begin(), mParamColorList.end(), DeletePointer());  } -BOOL LLTexGlobalColor::setInfo(LLTexGlobalColorInfo *info) +bool LLTexGlobalColor::setInfo(LLTexGlobalColorInfo *info)  {  	llassert(mInfo == NULL);  	mInfo = info; diff --git a/indra/llappearance/lltexglobalcolor.h b/indra/llappearance/lltexglobalcolor.h index 94cb979255..52c80fc943 100644 --- a/indra/llappearance/lltexglobalcolor.h +++ b/indra/llappearance/lltexglobalcolor.h @@ -42,7 +42,7 @@ public:  	LLTexGlobalColorInfo*	getInfo() const { return mInfo; }  	//   This sets mInfo and calls initialization functions -	BOOL					setInfo(LLTexGlobalColorInfo *info); +	bool					setInfo(LLTexGlobalColorInfo *info);  	LLAvatarAppearance*		getAvatarAppearance()	const	   	{ return mAvatarAppearance; }  	LLColor4				getColor() const; diff --git a/indra/llcharacter/llvisualparam.cpp b/indra/llcharacter/llvisualparam.cpp index e19ef19e33..2255191e59 100644 --- a/indra/llcharacter/llvisualparam.cpp +++ b/indra/llcharacter/llvisualparam.cpp @@ -333,7 +333,7 @@ void LLVisualParam::stopAnimating()  }  //virtual -BOOL LLVisualParam::linkDrivenParams(visual_param_mapper mapper, BOOL only_cross_params) +bool LLVisualParam::linkDrivenParams(visual_param_mapper mapper, bool only_cross_params)  {  	// nothing to do for non-driver parameters  	return true; diff --git a/indra/llcharacter/llvisualparam.h b/indra/llcharacter/llvisualparam.h index 4463cb0ccb..2a632689f0 100644 --- a/indra/llcharacter/llvisualparam.h +++ b/indra/llcharacter/llvisualparam.h @@ -125,7 +125,7 @@ public:  	virtual void			animate(F32 delta);  	virtual void			stopAnimating(); -	virtual BOOL			linkDrivenParams(visual_param_mapper mapper, BOOL only_cross_params); +	virtual bool			linkDrivenParams(visual_param_mapper mapper, bool only_cross_params);  	virtual void			resetDrivenParams();  	// Interface methods  | 
