Changeset 45883 in vbox for trunk/src/VBox/Main
- Timestamp:
- May 2, 2013 6:49:40 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 85485
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/VideoRec.cpp
r45878 r45883 715 715 /* One of the dimensions of the current frame is smaller than before so 716 716 * clear the entire buffer to prevent artifacts from the previous frame */ 717 if ( pVideoRecCtx->uLastSourceWidth < uSourceWidth718 || pVideoRecCtx->uLastSourceHeight < uSourceHeight)717 if ( uSourceWidth < pVideoRecCtx->uLastSourceWidth 718 || uSourceHeight < pVideoRecCtx->uLastSourceHeight) 719 719 { 720 720 memset(pVideoRecCtx->pu8RgbBuf, 0,
Note:
See TracChangeset
for help on using the changeset viewer.