質問

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