Tagged Questions
1
vote
1answer
192 views
Ambiguous results with Frame Buffers in libgdx
I am getting the following weird results with the FrameBuffer class in libgdx.
Here is the code that is producing this result:
// This is the rendering code
@Override
public void render(float ...
1
vote
2answers
454 views
LibGDX FrameBuffer scaling
I'm working on a painting application using the LibGDX framework, and I am using their FrameBuffer class to merge what the user draws onto a solid texture, which is what they see as their drawing. ...
1
vote
1answer
781 views
LibGDX FrameBuffer blending
Some quick background here, I just started using the LibGDX framework for my first attempts at Android game development. I am trying to build a texture using their FrameBuffer class by placing in ...
1
vote
1answer
662 views
LibGDX - Sprites to texture using FBO
I am working on a simple painting app using LibGDX, and I am having trouble getting it to "paint" properly with the setup I am using. The way I am trying to do this is to draw with sprites, and add ...
1
vote
0answers
243 views
Libgdx FrameBuffer Inadequate?
Simply put, I want to create a ripple effect. How to achieve the ripple effect is not my issue. My problem is more technical in nature.
I currently have a sorts of ripple effect working, and how I ...
0
votes
0answers
489 views
LibGDX FrameBuffer/FBO Blending
I am working on a LibGDX project and I am currently adding series of sprites into a FrameBuffer to combine them to a single texture as necessary (With code similar to the snippet found here
).
This ...
2
votes
3answers
1k views
Stenciling using OpenGl ES 2.0
I am trying to figure out a way to cut out a certain region of a background texture such that a certain custom pattern is not rendered on the screen for that background. For example:
This square ...