1
vote
1answer
53 views

Thread effectiveness for graphical applications

Let's say I'm creating lighting for a scene, using my own shaders. It is a good example of a thing that might be divided between many threads, for example by dividing scene into smaller scenes and ...
0
votes
0answers
119 views

Libgdx tiled map mirrored

I'm developing a small GameEngine with LibGDX Artemis including a ScriptingEngine. I'm using Tiled to generate and display a map. But since I'm drawing boxes from an objectLayer the drawings were ...
0
votes
1answer
171 views

Simple OpenGL shader gives an error in LibGDX (no uniform with name diffuseTexture)

I don't understand why when building I get an error when setting this simple shader to an imported mesh (.obj mesh), the error I get is: "no uniform with name 'diffuseTexture' in shader" The thing ...
4
votes
1answer
176 views

Issue with shaders/matrices - can't see object

I'm attempting to put a cube on the screen and light it. I'd like a phong shading on the cube. When I run my code, I can see a background image but no cube. I'm fairly sure the cube itself is ...
0
votes
1answer
165 views

Drawing a partially transparent Pixmap to a Texture (libgdx)

Using libgdx, is there something we have to do to enable transparency drawing a Pixmap to a Texture? I've tried doing this before the texture's draw() call where I pass the Pixmap: ...
0
votes
1answer
83 views

Is it possible to get the boundary of X and Y coordinates given fixed Z in libgdx

I know it possible to use PerspectiveCamera's frustum member to judge if a point(x,y,z) is in the frustum by calling pointInFrustum(Vector3 point) function. Now if the z-coordinate is fixed to some ...
1
vote
1answer
45 views

Does Libgdx have an implementation of display lists?

I'm stuck developing on an old computer with OpenGL 1.1 only. As such i'm grateful I can use ImmediateMode10 etc, but I don't see a way for me to create display lists in Libgdx. I've searched for ...
1
vote
1answer
206 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 ...
0
votes
0answers
134 views

LibGDX: BufferedImage into Texture

I'm trying to play videos within a LibGDX application. I've managed to load the individual video frames sequentially into a java.awt.BufferedImage using Xuggler. Now I'm stuck trying to get that into ...
2
votes
1answer
408 views

LibGDX Moving a Rotated Camera

I've come to a situation in my application, built using LibGDX, where I need the camera to be able to rotate, and also be moveable by the user, as well as being able to be zoomed. My camera controls ...
1
vote
1answer
196 views

GLSL Shader Error on Mac, but not Windows: cannot convert from 'const int' to '4-component vector of float'

I'm new to shaders and I started playing around with some of them yesterday. They compile fine on my Windows PC, but when they're ran on Mac, there is an error for both: ERROR: 0:14: '=' : ...
1
vote
1answer
136 views

must implement the inherited method ApplicationListener.render()

I keep getting this error: "The type MainMenu must implement the inherited abstract method ApplicationListener.render()" MY code: package com.gdx.game.Screens; import java.util.ArrayList; ...
3
votes
2answers
911 views

Drawing textured polygons with libgdx

I'm having a problem with my rendering cycle using libgdx, basically I need to fill an area with a square texture, and the last part of this area may be smaller or with a different shape than the ...
1
vote
2answers
923 views

How to make a smooth camera follow algorithm? [LibGDX]

I am making a game with LibGDX (Java) I need camera to follow fast moving character. The easiest way to do it is to just write this: this.getCamera().position.set(Obj.x, Obj.y, 0); But, is there ...
0
votes
1answer
163 views

gl_PointCoord has incorrect/uninitialized value

I am having trouble to get valid values in my fragment-shader's gl_PointCoord variable. I use libgdx, which is a cross-platform java framework that allows to run the same application on the desktop as ...
0
votes
0answers
127 views

Libgdx Method “glGenBuffers” not available

I have an Dell Inspiron 1525 with Mobile Intel GM965 Graphics card. I've tried to run the triangle example from libgdx. With lwjgl backend I get "device not closed". On jogl backend the app runs but ...
-1
votes
1answer
364 views

how to simulate a lamp in libgdx? [closed]

I am using libgdx and I was wondering how to simulate a lamp. What I mean is that I have a background texture and all the colors in it are pretty dark becuase it is suppose to a dark environment. ...
1
vote
1answer
784 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 ...
0
votes
1answer
684 views

Libgdx SpriteBatch.draw() specifying 4 vertices

I'm using libGdx to create a 2d game and am trying to use this particular method to draw a simple 2d texture, specifying the 4 vertices induvidually; draw(Texture texture, float[] spriteVertices, int ...
1
vote
0answers
344 views

libgdx texture's alpha value changed

so I have a problem with the alpha value in my texture. Basically the pixmap is set all black then I drew a filled circle with the alpha value set to 0 in order for the area of the circle it to be ...
1
vote
1answer
520 views

libGDX:Adding uniform var

I'm trying to add an uniform var to my shader , this is my shader: String vertexShader = "attribute vec4 " + ShaderProgram.POSITION_ATTRIBUTE + ";\n" // + "attribute vec4 " + ...
0
votes
0answers
341 views

libGDX: How to change color palette in texture region?

I'm trying to simulate retro arcade games , and the first problem i got is how to simulate a color palette , in order to have indexed textures and color cycling , having a limited palette. Some ...
1
vote
0answers
246 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
1answer
195 views

Center object in view opengl

I have a 3d object which I want to keep in the center of my view. If I were to translate the object I want the camera to move with it and keep the object in the center of the screen. How would I do ...
1
vote
0answers
464 views

Merging meshes opengl and libgdx

I am using the following code to merge several meshes: import java.util.ArrayList; import java.util.Arrays; import org.obsgolem.crystalia.gfx.Renderer; import com.badlogic.gdx.graphics.Mesh; ...
0
votes
1answer
460 views

Problems with making 2D terrain in OpenGL

Some time ago I asked this question about how to make a 2D terrain with opengl vertices. I got a good answer, but when trying it out it didn't draw anything, and I can't figure out what's wrong, or ...
8
votes
1answer
694 views

OpenGL 2D polygonal shape drawing and manipulation?

I'm working on a 2D game project where I am expecting users to draw 2D polygons (closed path) such as: Possible Solutions: 1 - Draw by Points and Calculate Border Lines. 1 Problem - Calculation of ...
4
votes
1answer
1k views

libgdx: SpriteBatch not displayed with PerspectiveCamera

While I do have the basic knowledge of OpenGL I'm just starting with libgdx. My question is: why, having the exact same code but only switching from OrthographicCamera to PerspectiveCamera has the ...
2
votes
0answers
129 views

Using Bumblee (Graphics Drivers) with Eclipse IDE [duplicate]

Possible Duplicate: How to run build using graphics drivers by using optirun (Bumblebee) from IDE (Netbeans, Eclipse)? I am running Ubuntu 11.10 with Bumblebee for the nvidia optimus ...
0
votes
1answer
424 views

Generating Very Large Images at Runtime with OpenGL and libgdx

I am generating very large hex grids (up to 120k total hexes at 32px wide hexes results in over 12k wide images) and I'm trying to find an efficient way to bind these to OpenGL textures in libgdx. I ...
0
votes
1answer
308 views

Method “glActiveTexture” not available

I'm starting to get into libGDX game engine. I have copied this example and tried to run. It runs ok as android application, but when i want it to run as java application it throws the following ...
1
vote
1answer
187 views

Orthographic projection that reveals more world data instead of scaling during a window resize

Trying to port a java2d demo app to a dekstop libgdx implementation. This app plots data that is in inches. The plot is like a map in that it is an overhead view of a terrain. I use ...
1
vote
1answer
348 views

How can I calculate the letterbox size with this class?

I have the following Java class I've written for a LibGdx OpenGL project. The camera keeps the aspect ratio of the screen no matter how you resize it by letterboxing either the top and bottom, or the ...