OpenGL glReadPixels gets 1282 error

1.6k Views Asked by At

I would like to create an offscreen renderer with OpenGL.

I've created a FBO and a RBO to call the glReadPixels(), but I always get an error.

This is my code:

// Init
GLuint fbo;
GLuint rbo;

glGenFramebuffers(1, &fbo);

glGenRenderbuffers(1, &rbo);
glBindRenderbuffer(GL_RENDERBUFFER, rbo);
glRenderbufferStorage(GL_RENDERBUFFER, GL_RGBA8, width, height);

glBindFramebuffer(GL_DRAW_FRAMEBUFFER, fbo);
glFramebufferRenderbuffer(GL_DRAW_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_RENDERBUFFER, rbo);

glClearColor(0.0f, 1.0f, 1.0f, 1.0f);

// Render loop
glBindFramebuffer(GL_DRAW_FRAMEBUFFER, fbo);

...

std::vector<unsigned char> output(width * height * 4);
glReadBuffer(GL_COLOR_ATTACHMENT0);
glReadPixels(0, 0, width, height, GL_RGBA, GL_UNSIGNED_BYTE, &output[0]);
glBindFramebuffer(GL_DRAW_FRAMEBUFFER, 0);

// Deinit
glDeleteRenderbuffers(1, &rbp);
glDeleteFramebuffers(1, &fbo);

The output doesn't contains anything and the glGetError() function always returns 1282 (GL_INVALID_OPERATION) after the call to glReadPixels().

What's the problem with this code?

0

There are 0 best solutions below