Post process filters :

- Fixed Apsect ratio issue with multiviews

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7486 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
rem..om 2011-05-11 17:24:21 +00:00
parent e6c9cbac12
commit db62445d7e

View File

@ -316,7 +316,7 @@ public class FilterPostProcessor implements SceneProcessor, Savable {
height = (int) (h * (Math.abs(bottom - top)));
width = Math.max(1, width);
height = Math.max(1, height);
vp.getCamera().resize(width, height, true);
vp.getCamera().resize(width, height, false);
cameraInit = true;
computeDepth = false;