mesa: fix some printf warnings with casts
This commit is contained in:
@@ -1553,27 +1553,27 @@ _mesa_CopyBufferSubData(GLenum readTarget, GLenum writeTarget,
|
||||
|
||||
if (readOffset < 0) {
|
||||
_mesa_error(ctx, GL_INVALID_VALUE,
|
||||
"glCopyBuffserSubData(readOffset = %d)", readOffset);
|
||||
"glCopyBuffserSubData(readOffset = %d)", (int) readOffset);
|
||||
return;
|
||||
}
|
||||
|
||||
if (writeOffset < 0) {
|
||||
_mesa_error(ctx, GL_INVALID_VALUE,
|
||||
"glCopyBuffserSubData(writeOffset = %d)", writeOffset);
|
||||
"glCopyBuffserSubData(writeOffset = %d)", (int) writeOffset);
|
||||
return;
|
||||
}
|
||||
|
||||
if (readOffset + size > src->Size) {
|
||||
_mesa_error(ctx, GL_INVALID_VALUE,
|
||||
"glCopyBuffserSubData(readOffset + size = %d)",
|
||||
readOffset + size);
|
||||
(int) (readOffset + size));
|
||||
return;
|
||||
}
|
||||
|
||||
if (writeOffset + size > dst->Size) {
|
||||
_mesa_error(ctx, GL_INVALID_VALUE,
|
||||
"glCopyBuffserSubData(writeOffset + size = %d)",
|
||||
writeOffset + size);
|
||||
(int) (writeOffset + size));
|
||||
return;
|
||||
}
|
||||
|
||||
|
@@ -969,7 +969,7 @@ _mesa_get_extension_count(GLcontext *ctx)
|
||||
|
||||
if (0)
|
||||
_mesa_debug(ctx, "%u of %d extensions enabled\n", ctx->Extensions.Count,
|
||||
Elements(default_extensions));
|
||||
(int) Elements(default_extensions));
|
||||
|
||||
return ctx->Extensions.Count;
|
||||
}
|
||||
|
@@ -455,14 +455,14 @@ _mesa_BindBufferRange(GLenum target, GLuint index,
|
||||
|
||||
if ((size <= 0) || (size & 0x3)) {
|
||||
/* must be positive and multiple of four */
|
||||
_mesa_error(ctx, GL_INVALID_VALUE, "glBindBufferRange(size%d)", size);
|
||||
_mesa_error(ctx, GL_INVALID_VALUE, "glBindBufferRange(size%d)", (int) size);
|
||||
return;
|
||||
}
|
||||
|
||||
if (offset & 0x3) {
|
||||
/* must be multiple of four */
|
||||
_mesa_error(ctx, GL_INVALID_VALUE,
|
||||
"glBindBufferRange(offset=%d)", offset);
|
||||
"glBindBufferRange(offset=%d)", (int) offset);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -476,7 +476,7 @@ _mesa_BindBufferRange(GLenum target, GLuint index,
|
||||
if (offset + size >= bufObj->Size) {
|
||||
_mesa_error(ctx, GL_INVALID_VALUE,
|
||||
"glBindBufferRange(offset + size %d > buffer size %d)",
|
||||
offset + size, bufObj->Size);
|
||||
(int) (offset + size), (int) (bufObj->Size));
|
||||
return;
|
||||
}
|
||||
|
||||
|
@@ -785,7 +785,7 @@ vbo_exec_DrawRangeElementsBaseVertex(GLenum mode,
|
||||
start, end, count, type, indices,
|
||||
ctx->Array.ArrayObj->_MaxElement - 1,
|
||||
ctx->Array.ElementArrayBufferObj->Name,
|
||||
ctx->Array.ElementArrayBufferObj->Size);
|
||||
(int) ctx->Array.ElementArrayBufferObj->Size);
|
||||
}
|
||||
|
||||
if (0)
|
||||
@@ -811,7 +811,7 @@ vbo_exec_DrawRangeElementsBaseVertex(GLenum mode,
|
||||
start, end, count, type, indices, max,
|
||||
ctx->Array.ArrayObj->_MaxElement - 1,
|
||||
ctx->Array.ElementArrayBufferObj->Name,
|
||||
ctx->Array.ElementArrayBufferObj->Size);
|
||||
(int) ctx->Array.ElementArrayBufferObj->Size);
|
||||
}
|
||||
}
|
||||
/* XXX we could also find the min index and compare to 'start'
|
||||
|
Reference in New Issue
Block a user