Changeset 68984 in vbox for trunk/src/VBox/Main
- Timestamp:
- Oct 4, 2017 2:24:57 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r68975 r68984 4684 4684 } 4685 4685 Display *pDisplay = (Display *)pv; /** @todo Check this cast! */ 4686 LogRel(("Display: Debug: pDisplay=%p sizeof(*pDisplay)=%#x\n", pDisplay, sizeof(*pDisplay)));4687 4686 pThis->pDisplay = pDisplay; 4688 4687 pThis->pDisplay->mpDrv = pThis; … … 4695 4694 * Start periodic screen refreshes 4696 4695 */ 4697 LogRel(("Display: Debug: Calling pfnSetRefreshRate\n"));4698 4696 pThis->pUpPort->pfnSetRefreshRate(pThis->pUpPort, 20); 4699 4697 4700 4698 #ifdef VBOX_WITH_CRHGSMI 4701 LogRel(("Display: Debug: Calling i_setupCrHgsmiData\n"));4702 4699 pDisplay->i_setupCrHgsmiData(); 4703 4700 #endif 4704 4701 4705 4702 #ifdef VBOX_WITH_VIDEOREC 4706 LogRel(("Display: Debug: Calling i_videoRecGetEnabled\n"));4707 4703 if (pDisplay->i_videoRecGetEnabled()) 4708 4704 { 4709 LogRel(("Display: Debug: Calling i_videoRecStart\n"));4710 4705 int rc2 = pDisplay->i_videoRecStart(); 4711 4706 if (RT_SUCCESS(rc2)) … … 4718 4713 #endif 4719 4714 4720 LogRel(("Display: driver constructed\n"));4721 4715 return rc; 4722 4716 }
Note:
See TracChangeset
for help on using the changeset viewer.