Reverted commit 3f3ef99b86
as it was not valid and introducing another issue.
This commit is contained in:
parent
5002413e51
commit
04f6b01d2e
@ -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);
|
||||
}
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user