Added ability to set framebuffer image format used in FilterPostProcessor.
https://hub.jmonkeyengine.org/t/ability-to-change-image-format-for-filterpostprocessor/36379
This commit is contained in:
parent
201010b6f0
commit
c9b5f9eb59
@ -141,7 +141,7 @@ public class FilterPostProcessor implements SceneProcessor, Savable {
|
||||
fsQuad.setWidth(1);
|
||||
fsQuad.setHeight(1);
|
||||
|
||||
if (!renderer.getCaps().contains(Caps.PackedFloatTexture)) {
|
||||
if (fbFormat == Format.RGB111110F && !renderer.getCaps().contains(Caps.PackedFloatTexture)) {
|
||||
fbFormat = Format.RGB8;
|
||||
}
|
||||
|
||||
@ -520,6 +520,10 @@ public class FilterPostProcessor implements SceneProcessor, Savable {
|
||||
this.assetManager = assetManager;
|
||||
}
|
||||
|
||||
public void setFrameBufferFormat(Format fbFormat) {
|
||||
this.fbFormat = fbFormat;
|
||||
}
|
||||
|
||||
public void write(JmeExporter ex) throws IOException {
|
||||
OutputCapsule oc = ex.getCapsule(this);
|
||||
oc.write(numSamples, "numSamples", 0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user