diff --git a/indra/newview/llcylinder.cpp b/indra/newview/llcylinder.cpp
index 2adc071d7ab67849102ee3b3efb662670e0d739c..f353851a251f3ddbac17a2ca39fa7cb2e1695955 100644
--- a/indra/newview/llcylinder.cpp
+++ b/indra/newview/llcylinder.cpp
@@ -53,22 +53,22 @@ void LLCone::render(S32 sides)
 		F32 a = (F32) i/sides * F_PI*2.f;
 		F32 x = cosf(a)*0.5f;
 		F32 y = sinf(a)*0.5f;
-		gGL.vertex3f(x,y,0.f);
+		gGL.vertex3f(x,y,-.5f);
 	}
-	gGL.vertex3f(cosf(0.f)*0.5f, sinf(0.f)*0.5f, 0.f);
+	gGL.vertex3f(cosf(0.f)*0.5f, sinf(0.f)*0.5f, -0.5f);
 
 	gGL.end();
 
 	gGL.begin(LLRender::TRIANGLE_FAN);
-	gGL.vertex3f(0.f, 0.f, 1.f);
+	gGL.vertex3f(0.f, 0.f, 0.5f);
 	for (U32 i = 0; i < sides; i++)
 	{
 		F32 a = (F32) i/sides * F_PI*2.f;
 		F32 x = cosf(a)*0.5f;
 		F32 y = sinf(a)*0.5f;
-		gGL.vertex3f(x,y,0.f);
+		gGL.vertex3f(x,y,-0.5f);
 	}
-	gGL.vertex3f(cosf(0.f)*0.5f, sinf(0.f)*0.5f, 0.f);
+	gGL.vertex3f(cosf(0.f)*0.5f, sinf(0.f)*0.5f, -0.5f);
 
 	gGL.end();
 }
diff --git a/indra/newview/llmaniprotate.cpp b/indra/newview/llmaniprotate.cpp
index 19798ef75299e95b3b1bf97ad95a5bd3665abd42..04dd2be583fbc580059020ad9b8aac3f7dd8ddde 100644
--- a/indra/newview/llmaniprotate.cpp
+++ b/indra/newview/llmaniprotate.cpp
@@ -199,8 +199,7 @@ void LLManipRotate::render()
 					gl_circle_2d( 0, 0,  mRadiusMeters, CIRCLE_STEPS, TRUE );
 				}
 				
-				GLdouble plane_eqn[] = { 0, 0, 1, 0 };
-				glClipPlane( GL_CLIP_PLANE0, plane_eqn );
+				gGL.flush();
 			}
 			gGL.popMatrix();
 		}