mirror of https://github.com/nothings/stb.git
Fix new VS2015 warnings in stb_image 2.07
- conversion from int to stbi_uc - unused parameter
This commit is contained in:
parent
023ff3ffd2
commit
36574182c0
|
@ -5222,7 +5222,7 @@ static stbi_uc *stbi__psd_load(stbi__context *s, int *x, int *y, int *comp, int
|
||||||
// Read the data.
|
// Read the data.
|
||||||
if (bitdepth == 16) {
|
if (bitdepth == 16) {
|
||||||
for (i = 0; i < pixelCount; i++, p += 4)
|
for (i = 0; i < pixelCount; i++, p += 4)
|
||||||
*p = stbi__get16be(s) >> 8;
|
*p = (stbi_uc) (stbi__get16be(s) >> 8);
|
||||||
} else {
|
} else {
|
||||||
for (i = 0; i < pixelCount; i++, p += 4)
|
for (i = 0; i < pixelCount; i++, p += 4)
|
||||||
*p = stbi__get8(s);
|
*p = stbi__get8(s);
|
||||||
|
@ -5764,7 +5764,7 @@ static stbi_uc *stbi__gif_load_next(stbi__context *s, stbi__gif *g, int *comp, i
|
||||||
if (o == NULL) return NULL;
|
if (o == NULL) return NULL;
|
||||||
|
|
||||||
if (prev_trans != -1)
|
if (prev_trans != -1)
|
||||||
g->pal[g->transparent][3] = prev_trans;
|
g->pal[g->transparent][3] = (stbi_uc) prev_trans;
|
||||||
|
|
||||||
return o;
|
return o;
|
||||||
}
|
}
|
||||||
|
@ -5795,6 +5795,8 @@ static stbi_uc *stbi__gif_load_next(stbi__context *s, stbi__gif *g, int *comp, i
|
||||||
return stbi__errpuc("unknown code", "Corrupt GIF");
|
return stbi__errpuc("unknown code", "Corrupt GIF");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
STBI_NOTUSED(req_comp);
|
||||||
}
|
}
|
||||||
|
|
||||||
static stbi_uc *stbi__gif_load(stbi__context *s, int *x, int *y, int *comp, int req_comp)
|
static stbi_uc *stbi__gif_load(stbi__context *s, int *x, int *y, int *comp, int req_comp)
|
||||||
|
|
Loading…
Reference in New Issue