Changeset 25583 in vbox for trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleView.cpp
- Timestamp:
- Dec 25, 2009 11:10:46 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxConsoleView.cpp
r25526 r25583 782 782 { 783 783 case VBoxDefs::QGLMode: 784 pViewport = new VBoxGLWidget (this, this );784 pViewport = new VBoxGLWidget (this, this, NULL); 785 785 break; 786 786 default: … … 839 839 mFrameBuf = 840 840 #ifdef VBOX_WITH_VIDEOHWACCEL 841 mAccelerate2DVideo ? new VBoxOverlayFrameBuffer<VBoxQImageFrameBuffer> (this) :841 mAccelerate2DVideo ? new VBoxOverlayFrameBuffer<VBoxQImageFrameBuffer> (this, &mainWnd->session()) : 842 842 #endif 843 843 new VBoxQImageFrameBuffer (this); … … 856 856 mFrameBuf = 857 857 #if defined(VBOX_WITH_VIDEOHWACCEL) && defined(DEBUG_misha) /* not tested yet */ 858 mAccelerate2DVideo ? new VBoxOverlayFrameBuffer<VBoxSDLFrameBuffer> (this ) :858 mAccelerate2DVideo ? new VBoxOverlayFrameBuffer<VBoxSDLFrameBuffer> (this, &mainWnd->session()) : 859 859 #endif 860 860 new VBoxSDLFrameBuffer (this); … … 879 879 mFrameBuf = 880 880 #ifdef VBOX_WITH_VIDEOHWACCEL 881 mAccelerate2DVideo ? new VBoxOverlayFrameBuffer<VBoxQuartz2DFrameBuffer> (this ) :881 mAccelerate2DVideo ? new VBoxOverlayFrameBuffer<VBoxQuartz2DFrameBuffer> (this, &mainWnd->session()) : 882 882 #endif 883 883 new VBoxQuartz2DFrameBuffer (this);
Note:
See TracChangeset
for help on using the changeset viewer.