From efbd339dc802f9c5a2ef82e947f0de38a9f8cb3d Mon Sep 17 00:00:00 2001 From: Shyotl Date: Wed, 26 Sep 2012 19:52:17 -0500 Subject: [PATCH] No return value? VisualStudio don' care. --- indra/llrender/llpostprocess.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/indra/llrender/llpostprocess.cpp b/indra/llrender/llpostprocess.cpp index d1cb1b3c5..c1415e3f6 100644 --- a/indra/llrender/llpostprocess.cpp +++ b/indra/llrender/llpostprocess.cpp @@ -296,6 +296,8 @@ public: gPostMotionBlurProgram.uniformMatrix4fv("inv_proj", 1, GL_FALSE, inv_proj.m); gPostMotionBlurProgram.uniform2fv("screen_res", 1, screen_rect.mV); gPostMotionBlurProgram.uniform1i("blur_strength", mStrength); + + return QUAD_NORMAL; } bool draw(U32 pass) {