Reverted commit 3f3ef99b86

as it was not valid and introducing another issue.
This commit is contained in:
Nehon 2015-05-12 21:13:17 +02:00
parent 5002413e51
commit 04f6b01d2e
2 changed files with 4 additions and 5 deletions

View File

@ -233,12 +233,11 @@ public abstract class Filter implements Savable {
* @param vp the viewport
* @param w the width
* @param h the height
* @param numSamples the number of samples for anti aliasing
*/
protected final void init(AssetManager manager, RenderManager renderManager, ViewPort vp, int w, int h, int numSamples) {
protected final void init(AssetManager manager, RenderManager renderManager, ViewPort vp, int w, int h) {
// cleanup(renderManager.getRenderer());
defaultPass = new Pass();
defaultPass.init(renderManager.getRenderer(), w, h, getDefaultPassTextureFormat(), getDefaultPassDepthFormat(), numSamples);
defaultPass.init(renderManager.getRenderer(), w, h, getDefaultPassTextureFormat(), getDefaultPassDepthFormat());
initFilter(manager, renderManager, vp, w, h);
}

View File

@ -170,10 +170,10 @@ public class FilterPostProcessor implements SceneProcessor, Savable {
renderFrameBuffer.setDepthTexture(depthTexture);
}
computeDepth = true;
filter.init(assetManager, renderManager, vp, width, height, numSamples);
filter.init(assetManager, renderManager, vp, width, height);
filter.setDepthTexture(depthTexture);
} else {
filter.init(assetManager, renderManager, vp, width, height, numSamples);
filter.init(assetManager, renderManager, vp, width, height);
}
}