diff options
| -rwxr-xr-x | indra/llmath/tests/mathmisc_test.cpp | 8 | ||||
| -rwxr-xr-x | indra/llmath/tests/v4coloru_test.cpp | 8 | ||||
| -rwxr-xr-x | indra/llwindow/llwindowmacosx.cpp | 36 | 
3 files changed, 26 insertions, 26 deletions
| diff --git a/indra/llmath/tests/mathmisc_test.cpp b/indra/llmath/tests/mathmisc_test.cpp index b5998f7a82..f12140cf8f 100755 --- a/indra/llmath/tests/mathmisc_test.cpp +++ b/indra/llmath/tests/mathmisc_test.cpp @@ -128,11 +128,11 @@ namespace tut  	void math_object::test<8>()  	{  		F32 val = 430903.2f; -		S32 val1 = llround(val); -		ensure("float llround value 1", (430903 == val1)); +		S32 val1 = ll_round(val); +		ensure("float ll_round value 1", (430903 == val1));  		val = -430903.9f; -		val1 = llround(val); -		ensure("float llround value 2", (-430904 == val1)); +		val1 = ll_round(val); +		ensure("float ll_round value 2", (-430904 == val1));  	}  	template<> template<> diff --git a/indra/llmath/tests/v4coloru_test.cpp b/indra/llmath/tests/v4coloru_test.cpp index 128f6f3564..12e607a820 100755 --- a/indra/llmath/tests/v4coloru_test.cpp +++ b/indra/llmath/tests/v4coloru_test.cpp @@ -300,8 +300,8 @@ namespace tut  		LLColor4U llcolor4u(r,g,b,a),llcolor4u1;  		const F32 fVal = 3.f;  		llcolor4u1 = llcolor4u.multAll(fVal); -		ensure("multAll:Fail to multiply ", (((U8)llround(r * fVal) == llcolor4u1.mV[VX]) && (U8)llround(g * fVal) == llcolor4u1.mV[VY] -											&& ((U8)llround(b * fVal) == llcolor4u1.mV[VZ])&& ((U8)llround(a * fVal) == llcolor4u1.mV[VW])));		 +		ensure("multAll:Fail to multiply ", (((U8)ll_round(r * fVal) == llcolor4u1.mV[VX]) && (U8)ll_round(g * fVal) == llcolor4u1.mV[VY] +											&& ((U8)ll_round(b * fVal) == llcolor4u1.mV[VZ])&& ((U8)ll_round(a * fVal) == llcolor4u1.mV[VW])));		  	}  	template<> template<> @@ -329,8 +329,8 @@ namespace tut  		llcolor4u.setVecScaleClamp(color3);  		const S32 MAX_COLOR = 255;  		F32 color_scale_factor = MAX_COLOR/r; -		S32 r2 = llround(r * color_scale_factor); -		S32 g2 = llround(g * color_scale_factor); +		S32 r2 = ll_round(r * color_scale_factor); +		S32 g2 = ll_round(g * color_scale_factor);  		ensure("setVecScaleClamp():Fail to add the value ",  ((r2 == llcolor4u.mV[VX]) && (g2 == llcolor4u.mV[VY]) && (0 == llcolor4u.mV[VZ])&& (255 == llcolor4u.mV[VW])));  	}  } diff --git a/indra/llwindow/llwindowmacosx.cpp b/indra/llwindow/llwindowmacosx.cpp index 7972b66012..09b898657c 100755 --- a/indra/llwindow/llwindowmacosx.cpp +++ b/indra/llwindow/llwindowmacosx.cpp @@ -235,8 +235,8 @@ void callRightMouseDown(float *pos, MASK mask)      }  	LLCoordGL		outCoords; -	outCoords.mX = llround(pos[0]); -	outCoords.mY = llround(pos[1]); +	outCoords.mX = ll_round(pos[0]); +	outCoords.mY = ll_round(pos[1]);  	gWindowImplementation->getCallbacks()->handleRightMouseDown(gWindowImplementation, outCoords, gKeyboard->currentMask(TRUE));  } @@ -248,8 +248,8 @@ void callRightMouseUp(float *pos, MASK mask)      }  	LLCoordGL		outCoords; -	outCoords.mX = llround(pos[0]); -	outCoords.mY = llround(pos[1]); +	outCoords.mX = ll_round(pos[0]); +	outCoords.mY = ll_round(pos[1]);  	gWindowImplementation->getCallbacks()->handleRightMouseUp(gWindowImplementation, outCoords, gKeyboard->currentMask(TRUE));  } @@ -261,8 +261,8 @@ void callLeftMouseDown(float *pos, MASK mask)      }  	LLCoordGL		outCoords; -	outCoords.mX = llround(pos[0]); -	outCoords.mY = llround(pos[1]); +	outCoords.mX = ll_round(pos[0]); +	outCoords.mY = ll_round(pos[1]);  	gWindowImplementation->getCallbacks()->handleMouseDown(gWindowImplementation, outCoords, gKeyboard->currentMask(TRUE));  } @@ -274,8 +274,8 @@ void callLeftMouseUp(float *pos, MASK mask)      }  	LLCoordGL		outCoords; -	outCoords.mX = llround(pos[0]); -	outCoords.mY = llround(pos[1]); +	outCoords.mX = ll_round(pos[0]); +	outCoords.mY = ll_round(pos[1]);  	gWindowImplementation->getCallbacks()->handleMouseUp(gWindowImplementation, outCoords, gKeyboard->currentMask(TRUE));  } @@ -288,8 +288,8 @@ void callDoubleClick(float *pos, MASK mask)      }  	LLCoordGL	outCoords; -	outCoords.mX = llround(pos[0]); -	outCoords.mY = llround(pos[1]); +	outCoords.mX = ll_round(pos[0]); +	outCoords.mY = ll_round(pos[1]);  	gWindowImplementation->getCallbacks()->handleDoubleClick(gWindowImplementation, outCoords, gKeyboard->currentMask(TRUE));  } @@ -304,8 +304,8 @@ void callResize(unsigned int width, unsigned int height)  void callMouseMoved(float *pos, MASK mask)  {  	LLCoordGL		outCoords; -	outCoords.mX = llround(pos[0]); -	outCoords.mY = llround(pos[1]); +	outCoords.mX = ll_round(pos[0]); +	outCoords.mY = ll_round(pos[1]);  	float deltas[2];  	gWindowImplementation->getMouseDeltas(deltas);  	outCoords.mX += deltas[0]; @@ -351,8 +351,8 @@ void callDeltaUpdate(float *delta, MASK mask)  void callMiddleMouseDown(float *pos, MASK mask)  {  	LLCoordGL		outCoords; -	outCoords.mX = llround(pos[0]); -	outCoords.mY = llround(pos[1]); +	outCoords.mX = ll_round(pos[0]); +	outCoords.mY = ll_round(pos[1]);  	float deltas[2];  	gWindowImplementation->getMouseDeltas(deltas);  	outCoords.mX += deltas[0]; @@ -363,8 +363,8 @@ void callMiddleMouseDown(float *pos, MASK mask)  void callMiddleMouseUp(float *pos, MASK mask)  {  	LLCoordGL outCoords; -	outCoords.mX = llround(pos[0]); -	outCoords.mY = llround(pos[1]); +	outCoords.mX = ll_round(pos[0]); +	outCoords.mY = ll_round(pos[1]);  	float deltas[2];  	gWindowImplementation->getMouseDeltas(deltas);  	outCoords.mX += deltas[0]; @@ -500,8 +500,8 @@ void LLWindowMacOSX::updateMouseDeltas(float* deltas)  {  	if (mCursorDecoupled)  	{ -		mCursorLastEventDeltaX = llround(deltas[0]); -		mCursorLastEventDeltaY = llround(-deltas[1]); +		mCursorLastEventDeltaX = ll_round(deltas[0]); +		mCursorLastEventDeltaY = ll_round(-deltas[1]);  		if (mCursorIgnoreNextDelta)  		{ | 
