Changeset 72060 in vbox for trunk/src/VBox
- Timestamp:
- Apr 28, 2018 9:10:04 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA_VBVA.cpp
r71656 r72060 388 388 { 389 389 LOGVBVABUFFER(("uScreenId %d, indexRecordFirst = %d, indexRecordFree = %d, off32Data = %d, off32Free = %d\n", 390 uScreenId, pVBVAData->indexRecordFirst, pVBVAData->guest.pVBVA->indexRecordFree,391 pVBVAData->off32Data, pVBVAData->guest.pVBVA->off32Free));390 uScreenId, pVBVAData->indexRecordFirst, pVBVAData->guest.pVBVA->indexRecordFree, 391 pVBVAData->off32Data, pVBVAData->guest.pVBVA->off32Free)); 392 392 struct { 393 393 /* The rectangle that includes all dirty rectangles. */ … … 414 414 } 415 415 416 if (cbCmd == uint32_t(~0))416 if (cbCmd == UINT32_MAX) 417 417 { 418 418 /* No more commands yet in the queue. */ … … 444 444 /* These are global coords, relative to the primary screen. */ 445 445 446 LOGVBVABUFFER(("cbCmd = %d, x=%d, y=%d, w=%d, h=%d\n", 447 cbCmd, pHdr->x, pHdr->y, pHdr->w, pHdr->h)); 446 LOGVBVABUFFER(("cbCmd = %d, x=%d, y=%d, w=%d, h=%d\n", cbCmd, pHdr->x, pHdr->y, pHdr->w, pHdr->h)); 448 447 LogRel3(("%s: update command cbCmd = %d, x=%d, y=%d, w=%d, h=%d\n", 449 448 __FUNCTION__, cbCmd, pHdr->x, pHdr->y, pHdr->w, pHdr->h));
Note:
See TracChangeset
for help on using the changeset viewer.