Changeset 105135 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jul 4, 2024 9:01:06 AM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r105095 r105135 2333 2333 int Display::i_recordingScreenUpdate(unsigned uScreenId, uint32_t x, uint32_t y, uint32_t w, uint32_t h) 2334 2334 { 2335 RecordingContext *pCtx = Recording.pCtx; 2336 2337 if (!pCtx->IsFeatureEnabled(uScreenId, RecordingFeature_Video)) 2338 return VINF_SUCCESS; 2339 2335 2340 BYTE *pbAddress; 2336 2341 ULONG ulWidth; … … 2339 2344 ULONG ulBytesPerLine; 2340 2345 2341 if (uScreenId == VBOX_VIDEO_PRIMARY_SCREEN) /* Take a shortcut for the primary screen. */ 2346 if ( uScreenId == VBOX_VIDEO_PRIMARY_SCREEN /* Take a shortcut for the primary screen. */ 2347 && mpDrv) 2342 2348 { 2343 2349 pbAddress = mpDrv->IConnector.pbData; … … 2360 2366 Log2Func(("uScreenId=%u, pbAddress=%p, ulWidth=%RU32, ulHeight=%RU32, ulBitsPerPixel=%RU32\n", 2361 2367 uScreenId, pbAddress, ulWidth, ulHeight, ulBitsPerPixel)); 2362 2363 AssertPtr(pbAddress);2364 Assert(ulWidth);2365 Assert(ulHeight);2366 Assert(ulBitsPerPixel);2367 Assert(ulBytesPerLine);2368 2368 2369 2369 return i_recordingScreenUpdate(uScreenId,
Note:
See TracChangeset
for help on using the changeset viewer.