define_list_fix
Sebastian Weiß 8 years ago
parent 903522de91
commit 2e58f2774c
  1. 7
      jme3-core/src/main/java/com/jme3/texture/FrameBuffer.java

@ -510,15 +510,18 @@ public class FrameBuffer extends NativeObject {
} }
/** /**
* @return The first color buffer attached to this FrameBuffer, or null * @return The color buffer with the index set by {@link #setTargetIndex(int), or null
* if no color buffers are attached. * if no color buffers are attached.
* If MRT is disabled, the first color buffer is returned.
*/ */
public RenderBuffer getColorBuffer() { public RenderBuffer getColorBuffer() {
if (colorBufs.isEmpty()) if (colorBufs.isEmpty())
return null; return null;
if (colorBufIndex<0 || colorBufIndex>=colorBufs.size()) {
return colorBufs.get(0); return colorBufs.get(0);
} }
return colorBufs.get(colorBufIndex);
}
/** /**
* @return The depth buffer attached to this FrameBuffer, or null * @return The depth buffer attached to this FrameBuffer, or null

Loading…
Cancel
Save