I hope this dont seem too much of a code dump, but I really have no clue as to why this dont work. Ive tried getting errors from glGetError() and it seems to always return 0. Ive tried to only include the code I think is affecting the problem, as the other code has been working fine in most other situations Ive used it in.
Anyways, code first:
This is my main render loop:
float rotate = 0.0f;
void Render(SDL_Window *window)
{
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glLoadIdentity();
gluLookAt(-2,-2,-10, 0,0,0, 0,1,0);
glRotatef(rotate, 0, 1, 0);
// Start drawing
glUseProgramObjectARB( *shader->GetShaderProgram() );
texture->EnableTexture( *shader->GetShaderProgram(),"tex" );
cube->Render();
SDL_GL_SwapWindow(window);
rotate = rotate+1;
glUseProgramObjectARB(0);
}
This is my objects render(cube->Render()):
void Object3DVBO::Render()
{
//Bind the buffers and tell OpenGL to use the Vertex Buffer Objects (VBO's), which we already prepared earlier
glBindBufferARB(GL_ARRAY_BUFFER_ARB, vboID);
glBindBufferARB(GL_ARRAY_BUFFER_ARB, texcoordsID);
glBindBufferARB(GL_ARRAY_BUFFER_ARB, normalID);
glBindBufferARB(GL_ELEMENT_ARRAY_BUFFER_ARB, indiceID);
//Enable states, and render (as if using vertex arrays directly)
glEnableClientState(GL_VERTEX_ARRAY);
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
glEnableClientState(GL_NORMAL_ARRAY);
glTexCoordPointer(2, GL_FLOAT, 0, 0);
glNormalPointer(GL_FLOAT, 0, 0);
glVertexPointer(3, GL_FLOAT, 0, 0);
if(textureid > 0) {
glEnable(GL_TEXTURE_2D); // Turn on Texturing
//glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
glBindTexture(GL_TEXTURE_2D, textureid);
}
//Draw the thing!
glDrawElements(GL_TRIANGLES, indexCount, GL_UNSIGNED_BYTE, 0);
//restore the GL state back
glDisableClientState(GL_NORMAL_ARRAY);
glDisableClientState(GL_TEXTURE_COORD_ARRAY);
glDisableClientState(GL_VERTEX_ARRAY);
if(textureid > 0) {
glDisable(GL_TEXTURE_2D); // Turn off Texturing
glBindTexture(GL_TEXTURE_2D, textureid);
}
glBindBufferARB(GL_ARRAY_BUFFER_ARB, 0); //Restore non VBO mode
glBindBufferARB(GL_ELEMENT_ARRAY_BUFFER_ARB, 0);
};
This is the code for initializing the VBOs:
void Object3DVBO::SetVBO()
{
// Vertices:
glGenBuffersARB(1, &vboID);
glBindBufferARB( GL_ARRAY_BUFFER_ARB, vboID);
glBufferDataARB( GL_ARRAY_BUFFER_ARB, sizeof(GLfloat)*vertices.size(), &vertices, GL_STATIC_DRAW_ARB );
// Vertices:
glGenBuffersARB(1, &indiceID);
glBindBufferARB( GL_ELEMENT_ARRAY_BUFFER_ARB, indiceID);
glBufferDataARB( GL_ELEMENT_ARRAY_BUFFER_ARB, sizeof(GLubyte)*indices.size(), &indices, GL_STATIC_DRAW_ARB );
// Normals:
glGenBuffersARB(1, &normalID);
glBindBufferARB( GL_ARRAY_BUFFER_ARB, normalID);
glBufferDataARB( GL_ARRAY_BUFFER_ARB, sizeof(GLfloat)*normals.size(), &normals, GL_STATIC_DRAW_ARB );
// Texture coordinates:
glGenBuffersARB(1, &texcoordsID);
glBindBufferARB( GL_ARRAY_BUFFER_ARB, texcoordsID);
glBufferDataARB( GL_ARRAY_BUFFER_ARB, sizeof(GLfloat)*texCoords.size(), &texCoords, GL_STATIC_DRAW_ARB );
vertices.clear();
normals.clear();
texCoords.clear();
indices.clear();
}
and then finally the simplest model Ive made in a textfile:
mesh:
-0.5 -0.5 0.0
0.5 -0.5 0.0
0.5 0.5 0.0
-0.5 0.5 0.0
normals:
0 0 -1
0 0 -1
0 0 -1
0 0 -1
texcoords:
0.0 0
1.0 0
1.0 1.0
0.0 1.0
indices:
0 0 0 1 1 1 2 2 2 0 0 0 2 2 2 3 3 3
end:
Whats outside this is reading the textfile and storing it into vectors from functions. Here is the header file for the object:
class Object3DVBO
{
public:
Object3DVBO(const char* objectfilename, GLuint textureid);
~Object3DVBO();
void Render();
private:
GLuint vboID,
texcoordsID,
normalID,
textureid,
indiceID;
int vertCount,
indexCount;
std::vector<GLfloat> vertices;
std::vector<GLfloat> normals;
std::vector<GLfloat> texCoords;
std::vector<GLubyte> indices;
void ConvertToReadable( std::vector<GLfloat> v, std::vector<GLfloat> n, std::vector<GLfloat> tc, std::vector<GLint> i);
void ReadObjectData( const char* objectfilename);
void SetVBO();
};
The other parts are for basically doing the same for a shaderpair & a texture, these seem to work fine(Shader is for now only version 120, so its using ftransform() etc.etc.)
The problem that I have is that when I use this code and glDrawElements using indices, I get a black screen(no errors anywhere) and if I then switch to glDrawArrays it works(or atleast Im seeing SOMETHING. Ive read alot of tutorials, examples and other SO posts trying to find what Im doing wrong, but none of the solutions/tutorials have so far made any difference.
Im doing this for educational purposes so I really need to use the glDrawElements & indices. Any help would be greatly appreciated!
Ps. If anyone is wondering about the SDL version, its SDL2.
glBindBufferARB (...)
will give you a linker error on this platform. The same goes for GLSL programs, use the core extension and not the ARB extension (glUseProgramObjectARB (...)
isglUseProgram (...)
in core OpenGL 2.0+). If you are following a tutorial, I would strongly suggest using something newer. - Andon M. Colemanftransform (...)
in GLSL 440 provided you have a compatibility profile. The point I was getting at is that there are implementations out there that only support the core version of GLSL and Vertex Buffer Objects (OS X, for instance). The likelihood that you are going to run your software on a GPU that is older than 1.4 (2003) is slim to none, but the likelihood that you will someday want to run it on OS X is quite good. If you establish OpenGL 2.0 as a baseline, then you will have fewer issues. - Andon M. Coleman