Pregunta

Is there any way to set the size of the FBO?

My device has an 1200*800 pixel, but I want to create only a 600*400 or, 300*200, or 150*100 pixel size FBO, any way to do this?

¿Fue útil?

Solución

FBOs are FrameBuffer in LibGDX. The constructor takes the size of the FBO.

new FrameBuffer(Format.RGBA8888, 600, 400, true);
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top