Browse Source

mesa: print more info in buffer_object_subdata_range_good() error message

tags/mesa-8.0-rc1
Brian Paul 13 years ago
parent
commit
b330f1f13c
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      src/mesa/main/bufferobj.c

+ 4
- 1
src/mesa/main/bufferobj.c View File

@@ -184,7 +184,10 @@ buffer_object_subdata_range_good( struct gl_context * ctx, GLenum target,
}
if (offset + size > bufObj->Size) {
_mesa_error(ctx, GL_INVALID_VALUE,
"%s(size + offset > buffer size)", caller);
"%s(offset %lu + size %lu > buffer size %lu)", caller,
(unsigned long) offset,
(unsigned long) size,
(unsigned long) bufObj->Size);
return NULL;
}
if (_mesa_bufferobj_mapped(bufObj)) {

Loading…
Cancel
Save