Changeset 50430 in vbox for trunk/src/VBox/HostServices/SharedOpenGL/crserverlib
- Timestamp:
- Feb 12, 2014 4:06:01 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedOpenGL/crserverlib/server_presenter.cpp
r50412 r50430 290 290 if (ScaledDstWidth <= 0) 291 291 { 292 WARN(("dst width (%d) <= 0", ScaledDstWidth)); 292 LOG(("ScaledDstWidth <= 0")); 293 if (ScaledDstWidth < 0) 294 WARN(("dst width (%d) < 0", ScaledDstWidth)); 293 295 return; 294 296 } … … 301 303 if (ScaledDstHeight <= 0) 302 304 { 303 WARN(("dst height (%d) <= 0", ScaledDstHeight)); 305 LOG(("ScaledDstHeight <= 0")); 306 if (ScaledDstHeight < 0) 307 WARN(("dst height (%d) < 0", ScaledDstHeight)); 304 308 return; 305 309 }
Note:
See TracChangeset
for help on using the changeset viewer.