Package panamagl.offscreen
Interface FBO
- All Known Implementing Classes:
AFBO
public interface FBO
A frame buffer object, or
FBO, can render OpenGL into an offscreen buffer that can later
be read to an Image by a FBOReader which will access the FBO content through readPixels(GL).- Author:
- Martin Pernollet
-
Method Summary
Modifier and TypeMethodDescriptionintintgetWidth()booleanvoidreadPixels(GL gl) voidvoidresize(int width, int height)
-
Method Details
-
prepare
-
release
-
resize
void resize(int width, int height) -
getWidth
int getWidth() -
getHeight
int getHeight() -
isPrepared
boolean isPrepared() -
readPixels
-