Changeset 24570 in vbox for trunk/src/VBox/GuestHost
- Timestamp:
- Nov 11, 2009 9:02:21 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/state_tracker/state_snapshot.c
r23694 r24570 691 691 uint32_t ui32; 692 692 GLint maxUniformLen, activeUniforms=0, uniformsCount=0, i, j; 693 GLchar *name ;693 GLchar *name = NULL; 694 694 GLenum type; 695 695 GLint size, location; … … 1650 1650 } 1651 1651 1652 rc = SSMR3GetS32(pSSM, &pProgram->cUniforms); 1652 int32_t cUniforms; 1653 rc = SSMR3GetS32(pSSM, &cUniforms); 1654 pProgram->cUniforms = cUniforms; 1653 1655 AssertRCReturn(rc, rc); 1654 1656
Note:
See TracChangeset
for help on using the changeset viewer.