diff options
| author | Palmer Truelson <palmer@lindenlab.com> | 2010-02-12 21:02:40 -0800 | 
|---|---|---|
| committer | Palmer Truelson <palmer@lindenlab.com> | 2010-02-12 21:02:40 -0800 | 
| commit | 85abcf4206e274b620df6526dbff4bb2b3b62b31 (patch) | |
| tree | 25191c00230bb748943188259a097d66c3587b7f | |
| parent | 718e45f6e422b8a5ec3d60a317775d7fc2318229 (diff) | |
| parent | 25be5a201fefed5653fca9ae348b10045b090c92 (diff) | |
merge
| -rw-r--r-- | indra/llui/llui.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/indra/llui/llui.cpp b/indra/llui/llui.cpp index 44a57a0989..852a19660a 100644 --- a/indra/llui/llui.cpp +++ b/indra/llui/llui.cpp @@ -710,19 +710,19 @@ void gl_draw_scaled_rotated_image(S32 x, S32 y, S32 width, S32 height, F32 degre  			v = LLVector3(offset_x, offset_y, 0.f) * quat;  			gGL.texCoord2f(uv_rect.mRight, uv_rect.mTop); -			gGL.vertex2i((GLint)v.mV[0], (GLint)v.mV[1] ); +			gGL.vertex2i(v.mV[0], v.mV[1] );  			v = LLVector3(-offset_x, offset_y, 0.f) * quat;  			gGL.texCoord2f(uv_rect.mLeft, uv_rect.mTop); -			gGL.vertex2i((GLint)v.mV[0], (GLint)v.mV[1] ); +			gGL.vertex2i(v.mV[0], v.mV[1] );  			v = LLVector3(-offset_x, -offset_y, 0.f) * quat;  			gGL.texCoord2f(uv_rect.mLeft, uv_rect.mBottom); -			gGL.vertex2i((GLint)v.mV[0], (GLint)v.mV[1] ); +			gGL.vertex2i(v.mV[0], v.mV[1] );  			v = LLVector3(offset_x, -offset_y, 0.f) * quat;  			gGL.texCoord2f(uv_rect.mRight, uv_rect.mBottom); -			gGL.vertex2i((GLint)v.mV[0], (GLint)v.mV[1] ); +			gGL.vertex2i(v.mV[0], v.mV[1] );  		}  		gGL.end();  		gGL.popUIMatrix(); | 
