Changeset 28242 in vbox
- Timestamp:
- Apr 13, 2010 10:47:48 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_muralfbo.c
r28230 r28242 275 275 char *pixels, *tmppixels, *pSrc, *pDst; 276 276 GLuint uid; 277 int i, j, r ealrowsize, rowsize, rowstride, height;277 int i, j, rowsize, rowstride, height; 278 278 CRrecti rect; 279 279 CRContext *ctx = crStateGetCurrent(); … … 297 297 if (crServerIntersectScreen(mural, i, &rect)) 298 298 { 299 rowsize = 4*RT_ALIGN_Z(rect.x2-rect.x1, 4); 300 realrowsize = 4*(rect.x2-rect.x1); 299 rowsize = 4*(rect.x2-rect.x1); 301 300 tmppixels = crAlloc(rowsize*(rect.y2-rect.y1)); 302 301 … … 315 314 for (j=0; j<height; ++j) 316 315 { 317 crMemcpy(pDst, pSrc, r ealrowsize);316 crMemcpy(pDst, pSrc, rowsize); 318 317 319 318 pSrc -= rowstride;
Note:
See TracChangeset
for help on using the changeset viewer.