Tagged Questions
6
votes
6answers
1k views
Multiple texture images blended together onto 3D ground
How do computer games render their ground? I will be using a heightmap for geometry (though I will later optimize it) but I am wondering what the best technique is, for example, to 'paint' my ground; ...
4
votes
5answers
410 views
Does anyone have good resources on 3D procedural generation of terrain or fractal terrain generation?
See title. Any help is appreciated!
3
votes
2answers
106 views
Marching Cubes, voxels, need a bit of suggestions
Marching Cubes, voxels, need a bit of help.
I'm trying to construct a proper destructible terrain, just for research purposes.
Well, everything went fine, but resolution is not satisfying me enough.
...
3
votes
2answers
580 views
Is there an easy way to get shadows in OpenGL?
I recently created a landscape code which I full understand, and added some diffuse lighting to the scene. However to my disappointment there was no shadows. I looked around the web for hours, looking ...
3
votes
6answers
1k views
OpenGl VBO technicalities in C++
I'm a little confused as to the proper usage of VBOs in an OpenGL program.
I want to create a terrain paging algorithm, using a map called from a 4096x4096 greyscale heightmap as the "whole" map.
...
2
votes
2answers
78 views
Invisible Terrain
I am using GL_TRIANGLE_STRIP to draw my terrain to the screen, however when I compile and run the program I get nothing. When I change GL_TRIANGLE_STRIP to GL_LINES it shows up and works. What can I ...
2
votes
2answers
301 views
GLSL - computing normals of fragments
I'm trying to create a program that displays a globe with terrain, and does all Lat/Long/Alt to XYZ (ECEF) on the GPU.
I've already written a working vertex shader that translates XYZ that represents ...
2
votes
1answer
235 views
How to correctly get the terrain height at point (x,z) in a scaled terrain
To properly map every pixel of a heightmap image to a terrain, we will end up with a terrain both in width and length 1 unit less that the actual width and length of the heightmap. For instance, if we ...
2
votes
1answer
734 views
OpenGL: Best rendering method for terrain which texture coordinates changes in real time?
I need to render in real time rendered animations for my terrain textures; what is the best rendering method for doing this? the animation is done by adjusting the texture coordinates.
I have a ...
1
vote
2answers
113 views
OpenGL Terrain Colission Detection
Okay, I have some procedurally generated terrain (based loosely on http://www.swiftless.com/terraintuts.html)
Ive got a teapot "plane" which you can fly around in (third person camera)
Basically, ...
1
vote
1answer
134 views
realtime terrain lighting
What would be the best way to provide realtime lighting in an OpenGL terrain scene? The level of detail between of each quad will be generated dynamically as it is subdivided as it zooms in, so a ...
1
vote
1answer
155 views
Uploading Vertex and Index buffer to the GPU
I am creating a terrain engine and currently I am uploading the whole terrain VB (Vertex Buffer) and IB (Index Buffer) to the GPU at once since the terrain is not huge. It's 256x256 at the moment.
...
0
votes
1answer
105 views
Terrain rendering from bitmap in OpenGL
I have an assignment to render a terrain from a greyscale 8bit bmp and get colors to the terrain from a texture 24bit bmp. I managed to get a proper landscape with heights and so on, and also I get ...