Browse Source

mesa: Clean up two 'comparison between signed and unsigned' warnings

tags/snb-magic
Ian Romanick 15 years ago
parent
commit
ccc1c4c6d9
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/mesa/main/shaderapi.c

+ 2
- 2
src/mesa/main/shaderapi.c View File

@@ -998,7 +998,7 @@ validate_samplers(struct gl_context *ctx, const struct gl_program *prog, char *e
assert(sampler < MAX_TEXTURE_IMAGE_UNITS);
unit = prog->SamplerUnits[sampler];
target = prog->SamplerTargets[sampler];
if (targetUsed[unit] != -1 && targetUsed[unit] != target) {
if (targetUsed[unit] != -1 && targetUsed[unit] != (int) target) {
_mesa_snprintf(errMsg, 100,
"Texture unit %d is accessed both as %s and %s",
unit, targetName[targetUsed[unit]], targetName[target]);
@@ -1563,7 +1563,7 @@ _mesa_ProgramParameteriARB(GLuint program, GLenum pname,
switch (pname) {
case GL_GEOMETRY_VERTICES_OUT_ARB:
if (value < 1 ||
value > ctx->Const.GeometryProgram.MaxGeometryOutputVertices) {
(unsigned) value > ctx->Const.GeometryProgram.MaxGeometryOutputVertices) {
_mesa_error(ctx, GL_INVALID_VALUE,
"glProgramParameteri(GL_GEOMETRY_VERTICES_OUT_ARB=%d",
value);

Loading…
Cancel
Save