Tagged Questions
5
votes
1answer
167 views
Two graphical entities, smooth blending between them (e.g. asphalt and grass)
Supposedly in a scenario there are, among other things, a tarmac strip and a meadow. The tarmac has an asphalt texture and its model is a triangle strip long that might bifurcate at some point into ...
0
votes
2answers
300 views
Help with Open GL terrain
I have a terrain class like so:
class Terrian {
public:
Terrian(int width, int height);
virtual ~Terrian();
GLuint get_vertexbuffer();
GLuint get_colorbuffer();
...
2
votes
1answer
494 views
Rendering skybox in first person shooter
I am trying to get a skybox rendered correctly in my first person shooter game. I have the skybox cube rendering using GL_TEXTURE_CUBE_MAP. I author the cube with extents of -1 and 1 along X,Y and Z.
...