mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 07:08:04 +02:00
st/mesa: silence MSVC signed/unsigned comparison warning
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
This commit is contained in:
parent
ead664e506
commit
32638737c5
1 changed files with 2 additions and 1 deletions
|
|
@ -298,7 +298,8 @@ static void init_format_extensions(struct st_context *st,
|
|||
{
|
||||
struct pipe_screen *screen = st->pipe->screen;
|
||||
GLboolean *extensions = (GLboolean *) &st->ctx->Extensions;
|
||||
int i, j;
|
||||
unsigned i;
|
||||
int j;
|
||||
int num_formats = Elements(mapping->format);
|
||||
int num_ext = Elements(mapping->extension_offset);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue