diff options
author | Brian Paul <[email protected]> | 2014-10-20 11:49:17 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-10-20 11:50:49 -0600 |
commit | 4676c6c25bac58234b3df48f416c3d05ecd9b1c7 (patch) | |
tree | 085241948d717dfe3186e7c667d05f111204a668 /src/mesa/main | |
parent | 14379a0644ed69c5b7a6c6150ae91eba6f316e33 (diff) |
mesa: fix 'misalgned' typos in error messages
Trivial.
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/bufferobj.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/bufferobj.c b/src/mesa/main/bufferobj.c index 0ee88560ffd..2bae1bc72d9 100644 --- a/src/mesa/main/bufferobj.c +++ b/src/mesa/main/bufferobj.c @@ -2710,7 +2710,7 @@ bind_buffer_range_uniform_buffer(struct gl_context *ctx, if (offset & (ctx->Const.UniformBufferOffsetAlignment - 1)) { _mesa_error(ctx, GL_INVALID_VALUE, - "glBindBufferRange(offset misalgned %d/%d)", (int) offset, + "glBindBufferRange(offset misaligned %d/%d)", (int) offset, ctx->Const.UniformBufferOffsetAlignment); return; } @@ -2797,7 +2797,7 @@ bind_atomic_buffer(struct gl_context *ctx, if (offset & (ATOMIC_COUNTER_SIZE - 1)) { _mesa_error(ctx, GL_INVALID_VALUE, - "%s(offset misalgned %d/%d)", name, (int) offset, + "%s(offset misaligned %d/%d)", name, (int) offset, ATOMIC_COUNTER_SIZE); return; } |