VirtualBox

Changeset 24570 in vbox for trunk/src/VBox/GuestHost


Ignore:
Timestamp:
Nov 11, 2009 9:02:21 AM (15 years ago)
Author:
vboxsync
Message:

crOGL: gcc warnings (note that GLint is sometimes long!)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/GuestHost/OpenGL/state_tracker/state_snapshot.c

    r23694 r24570  
    691691    uint32_t ui32;
    692692    GLint maxUniformLen, activeUniforms=0, uniformsCount=0, i, j;
    693     GLchar *name;
     693    GLchar *name = NULL;
    694694    GLenum type;
    695695    GLint size, location;
     
    16501650        }
    16511651
    1652         rc = SSMR3GetS32(pSSM, &pProgram->cUniforms);
     1652        int32_t cUniforms;
     1653        rc = SSMR3GetS32(pSSM, &cUniforms);
     1654        pProgram->cUniforms = cUniforms;
    16531655        AssertRCReturn(rc, rc);
    16541656
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette