Tagged Questions
0
votes
1answer
135 views
Changing camera position in 2D game OpenGL
I'm beginner in making games in OpenGL. I drew a map (this is world, there player can move) and now I want to do, that camera follows the player (player is in center of the screen).
I've done ...
0
votes
2answers
445 views
Android OpenGL works on emulator but not phone
I have the following code for the Renderer:
package hello.project;
import javax.microedition.khronos.egl.EGLConfig;
import javax.microedition.khronos.opengles.GL10;
import android.content.Context;
...
-3
votes
2answers
99 views
Why in OpenGL's LookAt, if our face is facing almost up the sky, we can still see things right in front of us? [duplicate]
Possible Duplicate:
What exactly is the UP vector in OpenGL's LookAt function?
This is related to: What exactly is the UP vector in OpenGL's LookAt function?
If the call is:
...
0
votes
4answers
2k views
What exactly is the UP vector in OpenGL's LookAt function?
this is related to The LookAt target location doesn't matter if it is z = 0 or z = 1000 or -1000?
I tried
gluLookAt(512, 384, 2000,
512, 384, 0,
0.0f, 1.0f, ...
1
vote
2answers
123 views
The LookAt target location doesn't matter if it is z = 0 or z = 1000 or -1000?
I am trying LookAt in OpenGL ES,
gluLookAt(512, 384, 2000,
512, 384, 0,
0.0f, 1.0f, 0.0f);
The second row is the Target's position... so I wonder, if I change the z ...
0
votes
1answer
853 views
OpenGL ES: glOrtho() shows object, but gluPerspective() doesn't
I am showing a textured sqad, centered around [0,0,-10], width and height = 10000. The camera is positioned at [0,0,0] and looks down the negative z-axis (eyepoint=[0,0,0], center=[0,0,-1]):
...
1
vote
1answer
265 views
OpenGL Android: X axis is mysteriously flipped
I am displaying a quad in a pseudo-2D canvas via OpenGL.
To do so, I use orthographic projection via:
gl.glMatrixMode(GL10.GL_PROJECTION);
gl.glLoadIdentity();
gl.glOrthof(-ratio, ratio, -1, 1, 0, ...