mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 18:18:06 +02:00
mesa: fix some MSVC signed/unsigned compiler warnings
This commit is contained in:
parent
010f8762e8
commit
717621acff
3 changed files with 8 additions and 6 deletions
|
|
@ -127,7 +127,7 @@ _mesa_GetPerfMonitorGroupsAMD(GLint *numGroups, GLsizei groupsSize,
|
|||
|
||||
if (groupsSize > 0 && groups != NULL) {
|
||||
unsigned i;
|
||||
unsigned n = MIN2(groupsSize, ctx->PerfMonitor.NumGroups);
|
||||
unsigned n = MIN2((GLuint) groupsSize, ctx->PerfMonitor.NumGroups);
|
||||
|
||||
/* We just use the index in the Groups array as the ID. */
|
||||
for (i = 0; i < n; i++)
|
||||
|
|
@ -156,7 +156,7 @@ _mesa_GetPerfMonitorCountersAMD(GLuint group, GLint *numCounters,
|
|||
|
||||
if (counters != NULL) {
|
||||
unsigned i;
|
||||
unsigned n = MIN2(group_obj->NumCounters, countersSize);
|
||||
unsigned n = MIN2(group_obj->NumCounters, (GLuint) countersSize);
|
||||
for (i = 0; i < n; i++) {
|
||||
/* We just use the index in the Counters array as the ID. */
|
||||
counters[i] = i;
|
||||
|
|
@ -379,7 +379,7 @@ _mesa_SelectPerfMonitorCountersAMD(GLuint monitor, GLboolean enable,
|
|||
GLuint *counterList)
|
||||
{
|
||||
GET_CURRENT_CONTEXT(ctx);
|
||||
unsigned i;
|
||||
int i;
|
||||
struct gl_perf_monitor_object *m;
|
||||
const struct gl_perf_monitor_group *group_obj;
|
||||
|
||||
|
|
|
|||
|
|
@ -853,7 +853,7 @@ _mesa_GetActiveAtomicCounterBufferiv(GLuint program, GLuint bufferIndex,
|
|||
GET_CURRENT_CONTEXT(ctx);
|
||||
struct gl_shader_program *shProg;
|
||||
struct gl_active_atomic_buffer *ab;
|
||||
int i;
|
||||
GLuint i;
|
||||
|
||||
if (!ctx->Extensions.ARB_shader_atomic_counters) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
|
|
|
|||
|
|
@ -324,7 +324,7 @@ void GLAPIENTRY
|
|||
_mesa_VDPAUMapSurfacesNV(GLsizei numSurfaces, const GLintptr *surfaces)
|
||||
{
|
||||
GET_CURRENT_CONTEXT(ctx);
|
||||
int i, j;
|
||||
int i;
|
||||
|
||||
if (!ctx->vdpDevice || !ctx->vdpGetProcAddress || !ctx->vdpSurfaces) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION, "VDPAUUnmapSurfacesNV");
|
||||
|
|
@ -348,6 +348,7 @@ _mesa_VDPAUMapSurfacesNV(GLsizei numSurfaces, const GLintptr *surfaces)
|
|||
for (i = 0; i < numSurfaces; ++i) {
|
||||
struct vdp_surface *surf = (struct vdp_surface *)surfaces[i];
|
||||
unsigned numTextureNames = surf->output ? 1 : 4;
|
||||
unsigned j;
|
||||
|
||||
for (j = 0; j < numTextureNames; ++j) {
|
||||
struct gl_texture_object *tex = surf->textures[j];
|
||||
|
|
@ -377,7 +378,7 @@ void GLAPIENTRY
|
|||
_mesa_VDPAUUnmapSurfacesNV(GLsizei numSurfaces, const GLintptr *surfaces)
|
||||
{
|
||||
GET_CURRENT_CONTEXT(ctx);
|
||||
int i, j;
|
||||
int i;
|
||||
|
||||
if (!ctx->vdpDevice || !ctx->vdpGetProcAddress || !ctx->vdpSurfaces) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION, "VDPAUUnmapSurfacesNV");
|
||||
|
|
@ -401,6 +402,7 @@ _mesa_VDPAUUnmapSurfacesNV(GLsizei numSurfaces, const GLintptr *surfaces)
|
|||
for (i = 0; i < numSurfaces; ++i) {
|
||||
struct vdp_surface *surf = (struct vdp_surface *)surfaces[i];
|
||||
unsigned numTextureNames = surf->output ? 1 : 4;
|
||||
unsigned j;
|
||||
|
||||
for (j = 0; j < numTextureNames; ++j) {
|
||||
struct gl_texture_object *tex = surf->textures[j];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue