im working on a simple minecraft clone to expand my knowledge about opengl programming. I am using Glew, glfw, glm, and OpenGL version 3.3. Everything works fine, except i get a horrible fps even when rendering a single Chunk.
For optimisation i have written a algorithm to only render visible cubes, and then to only render visible faces on those cubes. I am also using CULL_FACE to stop the rendering of unecessary faces.
Right now each chunk is a object. and within it i have a array with the cubes and faces to be rendered.
int renderVisible[FRAGMENTSIZE*FRAGMENTSIZE*FRAGMENTSIZE][6];
The last dimension gets a 1 or a 0, depending if its going to be rendered.
I also have a renderIndex for each chunk, which shows how many cubes has to be cycled thru in the rendervisible and renderPosition array.
A pseudo code of the main rendering loop looks like this, this is the main rendering loop:
// Clear the screen
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
// Use our shader
glUseProgram(programID);
// Get the MVP matrix from user input
getInputs();
glm::vec3 lightPos = glm::vec3(16,120,16);
glUniform3f(LightID, lightPos.x, lightPos.y, lightPos.z);
// Bind our texture in Texture Unit 0
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, Texture);
// Set our "myTextureSampler" sampler to user Texture Unit 0
glUniform1i(TextureID, 0);
// 1rst attribute buffer : vertices
glEnableVertexAttribArray(0);
glBindBuffer(GL_ARRAY_BUFFER, vertexbuffer);
glVertexAttribPointer(
0, // attribute. No particular reason for 0, but must match the layout in the shader.
3, // size
GL_FLOAT, // type
GL_FALSE, // normalized?
0, // stride
(void*)0 // array buffer offset
);
// 2nd attribute buffer : UVs
glEnableVertexAttribArray(1);
glBindBuffer(GL_ARRAY_BUFFER, uvbuffer);
glVertexAttribPointer(
1, // attribute. No particular reason for 1, but must match the layout in the shader.
2, // size : U+V => 2
GL_FLOAT, // type
GL_FALSE, // normalized?
0, // stride
(void*)0 // array buffer offset
);
// 3rd attribute buffer : normals
glEnableVertexAttribArray(2);
glBindBuffer(GL_ARRAY_BUFFER, normalbuffer);
glVertexAttribPointer(
2, // attribute
3, // size
GL_FLOAT, // type
GL_FALSE, // normalized?
0, // stride
(void*)0 // array buffer offset
);
glm::mat4 ProjectionMatrix = getProjectionMatrix();
glm::mat4 ViewMatrix = getViewMatrix();
// main Chunk/fragment loop
for(int frags = 0; frags < fragmentlist.size(); frags++) {
//check what fragments need to be rendered or not
Fragment chunk = fragmentlist[frags];
glm::vec3 chunkAngle = chunk.getRenderAng();
for(int i = 0 ; i < chunk.getIndex(); i++) {
glm::mat4 ModelMatrix = glm::mat4(1.0);
ModelMatrix = glm::rotate(ModelMatrix, chunkAngle.x, vec3(1,0,0));
ModelMatrix = glm::rotate(ModelMatrix, chunkAngle.y, vec3(0,1,0));
ModelMatrix = glm::rotate(ModelMatrix, chunkAngle.z, vec3(0,0,1));
ModelMatrix = glm::translate(ModelMatrix, chunk.getRenderPos(i));
//ModelMatrix = glm::scale(ModelMatrix,glm::vec3(3,1,3));
glm::mat4 MVP = ProjectionMatrix * ViewMatrix * ModelMatrix;
// Send our transformation to the currently bound shader,
// in the "MVP" uniform
glUniformMatrix4fv(MatrixID, 1, GL_FALSE, &MVP[0][0]);
glUniformMatrix4fv(ModelMatrixID, 1, GL_FALSE, &ModelMatrix[0][0]);
glUniformMatrix4fv(ViewMatrixID, 1, GL_FALSE, &ViewMatrix[0][0]);
// Draw the correct faces
for(int idx = 0; idx < 6; idx++) {
draw = chunk.getVisible(i,idx);
if(draw==1) {
glDrawArrays(GL_TRIANGLES, (idx*2)*3, 6);
}
}
}
}
glDisableVertexAttribArray(0);
glDisableVertexAttribArray(1);
glDisableVertexAttribArray(2);
// Swap buffers
glfwSwapBuffers();
Do you see any beginners mistakes that could account for the horrible fps i get? With 2 rendered chunks/fragments, i get 5fps.
getfunctions that takes a lot of time. I might suggest putting this through a profiler to see what's taking most of the time (you can't really profile OpenGL calls with a method profiler, though maybe something else other than OGL is taking a lot of time) – Tim Sep 26 '12 at 17:16