Changeset 26862 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Feb 26, 2010 3:20:27 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 58140
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxFBOverlay.h
r26797 r26862 1338 1338 { 1339 1339 public: 1340 VBoxGLWidget (CConsole &console, QWidget *aParent, VBoxVHWASettings *aSettings);1340 VBoxGLWidget (CConsole console, QWidget *aParent, VBoxVHWASettings *aSettings); 1341 1341 ~VBoxGLWidget(); 1342 1342 … … 1535 1535 QRect mViewport; 1536 1536 1537 CConsole &m_console;1537 CConsole m_console; 1538 1538 1539 1539 VBoxVHWASurfList *mConstructingList; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp
r26859 r26862 370 370 switch (mode()) 371 371 { 372 #if 0 // TODO: Create Open GL viewport!373 372 case VBoxDefs::QGLMode: 374 pViewport = new VBoxGLWidget( this, this, NULL);373 pViewport = new VBoxGLWidget(session().GetConsole(), this, NULL); 375 374 break; 376 #endif377 375 default: 378 376 pViewport = new VBoxViewport(this);
Note:
See TracChangeset
for help on using the changeset viewer.