mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-31 07:00:27 +01:00
mesa: more detailed error messages in fbo code
This commit is contained in:
parent
b17c885a8a
commit
9b50ceac03
1 changed files with 5 additions and 2 deletions
|
|
@ -34,6 +34,7 @@
|
|||
|
||||
#include "buffers.h"
|
||||
#include "context.h"
|
||||
#include "enums.h"
|
||||
#include "fbobject.h"
|
||||
#include "framebuffer.h"
|
||||
#include "hash.h"
|
||||
|
|
@ -1665,7 +1666,8 @@ _mesa_FramebufferRenderbufferEXT(GLenum target, GLenum attachment,
|
|||
att = _mesa_get_attachment(ctx, fb, attachment);
|
||||
if (att == NULL) {
|
||||
_mesa_error(ctx, GL_INVALID_ENUM,
|
||||
"glFramebufferRenderbufferEXT(attachment)");
|
||||
"glFramebufferRenderbufferEXT(invalid attachment %s)",
|
||||
_mesa_lookup_enum_by_nr(attachment));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -1673,7 +1675,8 @@ _mesa_FramebufferRenderbufferEXT(GLenum target, GLenum attachment,
|
|||
rb = _mesa_lookup_renderbuffer(ctx, renderbuffer);
|
||||
if (!rb) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"glFramebufferRenderbufferEXT(renderbuffer)");
|
||||
"glFramebufferRenderbufferEXT(non-existant"
|
||||
" renderbuffer %u)", renderbuffer);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue