diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp
index 94b62ba346fe8285898d77776f8c86dd0edc8711..cb26d9f4c39a2182bb862d423266180bd1ce26a8 100644
--- a/indra/newview/pipeline.cpp
+++ b/indra/newview/pipeline.cpp
@@ -9251,6 +9251,7 @@ void LLPipeline::generateWaterReflection(LLCamera& camera_in)
 		
 		gPipeline.pushRenderTypeMask();
 
+		glh::matrix4f current	 = get_current_modelview();
         glh::matrix4f projection = get_current_projection();
 		glh::matrix4f mat;
 
@@ -9290,8 +9291,6 @@ void LLPipeline::generateWaterReflection(LLCamera& camera_in)
 			//disable occlusion culling for reflection map for now
 			LLPipeline::sUseOcclusion = 0;
 
-        glh::matrix4f current = get_current_modelview();
-
         if (!camera_is_underwater)
         {   //generate planar reflection map
 
@@ -9300,15 +9299,9 @@ void LLPipeline::generateWaterReflection(LLCamera& camera_in)
             gGL.matrixMode(LLRender::MM_MODELVIEW);
             gGL.pushMatrix();
 
-            glh::matrix4f mat;
-            camera.getOpenGLTransform(mat.m);
-
-            glh::matrix4f scal;
-            scal.set_scale(glh::vec3f(1, 1, -1));
-            mat = scal * mat;
-
-            // convert from CFR to OGL coord sys...
-            mat = glh::matrix4f((GLfloat*) OGL_TO_CFR_ROTATION) * mat;
+			mat.set_scale(glh::vec3f(1, 1, -1));
+			mat.set_translate(glh::vec3f(0, 0, water_height * 2.f));
+			mat = current * mat;
 
             mReflectionModelView = mat;
 
@@ -9317,6 +9310,12 @@ void LLPipeline::generateWaterReflection(LLCamera& camera_in)
 
 			LLViewerCamera::updateFrustumPlanes(camera, FALSE, TRUE);
 
+			glh::vec3f    origin(0, 0, 0);
+			glh::matrix4f inv_mat = mat.inverse();
+			inv_mat.mult_matrix_vec(origin);
+			
+			camera.setOrigin(origin.v);
+
 			glCullFace(GL_FRONT);
 
 			if (LLDrawPoolWater::sNeedsReflectionUpdate)