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?

有帮助吗?

解决方案

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

new FrameBuffer(Format.RGBA8888, 600, 400, true);
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top