Changeset 68972 in vbox
- Timestamp:
- Oct 4, 2017 10:30:58 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 118240
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/DisplayImpl.cpp
r68971 r68972 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))); 4686 4687 pThis->pDisplay = pDisplay; 4687 4688 pThis->pDisplay->mpDrv = pThis; … … 4694 4695 * Start periodic screen refreshes 4695 4696 */ 4697 LogRel(("Display: Debug: Calling pfnSetRefreshRate\n")); 4696 4698 pThis->pUpPort->pfnSetRefreshRate(pThis->pUpPort, 20); 4697 4699 4698 4700 #ifdef VBOX_WITH_CRHGSMI 4701 LogRel(("Display: Debug: Calling i_setupCrHgsmiData\n")); 4699 4702 pDisplay->i_setupCrHgsmiData(); 4700 4703 #endif 4701 4704 4702 4705 #ifdef VBOX_WITH_VIDEOREC 4706 LogRel(("Display: Debug: Calling i_videoCaptureGetEnabled\n")); 4703 4707 if (pDisplay->i_videoCaptureGetEnabled()) 4704 4708 { 4709 LogRel(("Display: Debug: Calling i_videoCaptureStart\n")); 4705 4710 int rc2 = pDisplay->i_videoCaptureStart(); 4706 4711 if (RT_SUCCESS(rc2)) … … 4713 4718 #endif 4714 4719 4720 LogRel(("Display: driver constructed\n")); 4715 4721 return rc; 4716 4722 }
Note:
See TracChangeset
for help on using the changeset viewer.