- Timestamp:
- May 27, 2015 12:59:58 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA_VBVA.cpp
r56041 r56097 967 967 } 968 968 PDMCritSectLeave(&pVGAState->CritSect); 969 LogRel((" Pending command count has reached its threshold.. completing them all.."));969 LogRel(("VBVA: Pending command count has reached its threshold.. completing them all..")); 970 970 RTMemFree(pPend); 971 971 } … … 974 974 } 975 975 else 976 LogRel((" Pending command count has reached its threshold, completing them all.."));976 LogRel(("VBVA: Pending command count has reached its threshold, completing them all..")); 977 977 978 978 vbvaVHWACommandCompleteAllPending(pVGAState, rc); … … 1992 1992 if (u32 != VBOXVBVASAVEDSTATE_VHWAUNAVAILABLE_MAGIC) 1993 1993 { 1994 LogRel((" 2D data while 2D is not supported\n"));1994 LogRel(("VBVA: 2D data while 2D is not supported\n")); 1995 1995 return VERR_NOT_SUPPORTED; 1996 1996 } … … 2004 2004 if (u32) 2005 2005 { 2006 LogRel((" 2D pending command while 2D is not supported\n"));2006 LogRel(("VBVA: 2D pending command while 2D is not supported\n")); 2007 2007 return VERR_NOT_SUPPORTED; 2008 2008 } … … 2184 2184 } 2185 2185 2186 LogRelFlow(("VBVA _INFO_VIEW: invalid data:index %d(%d), offset 0x%x, size 0x%x, max 0x%x, vram size 0x%x\n",2186 LogRelFlow(("VBVA: InfoView: invalid data! index %d(%d), offset 0x%x, size 0x%x, max 0x%x, vram size 0x%x\n", 2187 2187 view.u32ViewIndex, pCtx->cViews, view.u32ViewOffset, view.u32ViewSize, 2188 2188 view.u32MaxScreenSize, pVGAState->vram_size)); … … 2194 2194 const VBVAINFOSCREEN screen = *pScreen; 2195 2195 2196 LogRel(("VBVA _INFO_SCREEN: [%d] @%d,%d %dx%d, line 0x%x, BPP %d, flags 0x%x\n",2196 LogRel(("VBVA: InfoScreen: [%d] @%d,%d %dx%d, line 0x%x, BPP %d, flags 0x%x\n", 2197 2197 screen.u32ViewIndex, screen.i32OriginX, screen.i32OriginY, 2198 2198 screen.u32Width, screen.u32Height, … … 2222 2222 } 2223 2223 2224 LogRelFlow(("VBVA_INFO_SCREEN: invalid data: size 0x%RX64, max 0x%RX32\n", 2224 /** @todo why not use "%#RX" instead of "0x%RX"? */ 2225 LogRelFlow(("VBVA: InfoScreen: invalid data! size 0x%RX64, max 0x%RX32\n", 2225 2226 u64ScreenSize, pView->u32MaxScreenSize)); 2226 2227 } … … 2228 2229 else 2229 2230 { 2230 LogRelFlow(("VBVA _INFO_SCREEN: invalid data: index %RU32(%RU32)\n",2231 screen.u32ViewIndex,pCtx->cViews));2231 LogRelFlow(("VBVA: InfoScreen: invalid data! index %RU32(%RU32)\n", screen.u32ViewIndex, 2232 pCtx->cViews)); 2232 2233 } 2233 2234 … … 2343 2344 const VBVAQUERYMODEHINTS parms = *pQueryModeHints; 2344 2345 2345 LogRelFlowFunc(("VBVA _QUERY_MODE_HINTS: cHintsQueried=%RU16, cbHintStructureGuest=%RU16\n",2346 LogRelFlowFunc(("VBVA: HandleQueryModeHints: cHintsQueried=%RU16, cbHintStructureGuest=%RU16\n", 2346 2347 parms.cHintsQueried, parms.cbHintStructureGuest)); 2347 2348 … … 2681 2682 2682 2683 const VBVAREPORTINPUTMAPPING inputMapping = *(VBVAREPORTINPUTMAPPING *)pvBuffer; 2683 LogRelFlowFunc(("VBVA _REPORT_INPUT_MAPPING: x=%RI32, y=%RI32, cx=%RU32, cy=%RU32\n",2684 LogRelFlowFunc(("VBVA: ChannelHandler: VBVA_REPORT_INPUT_MAPPING: x=%RI32, y=%RI32, cx=%RU32, cy=%RU32\n", 2684 2685 inputMapping.x, inputMapping.y, inputMapping.cx, inputMapping.cy)); 2685 2686 pVGAState->pDrv->pfnVBVAInputMappingUpdate(pVGAState->pDrv, … … 2698 2699 VBVACURSORPOSITION *pReport = (VBVACURSORPOSITION *)pvBuffer; 2699 2700 2700 LogRelFlowFunc(("VBVA _CURSOR_POSITION: fReportPosition=%RTbool, x=%RU32, y=%RU32\n",2701 LogRelFlowFunc(("VBVA: ChannelHandler: VBVA_CURSOR_POSITION: fReportPosition=%RTbool, x=%RU32, y=%RU32\n", 2701 2702 RT_BOOL(pReport->fReportPosition), pReport->x, pReport->y)); 2702 2703
Note:
See TracChangeset
for help on using the changeset viewer.