Changeset 23548 in vbox
- Timestamp:
- Oct 5, 2009 10:22:25 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 53192
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxFBOverlay.h
r23346 r23548 1049 1049 bool vboxIsInitialized() {return mDisplay.getVGA() != NULL; } 1050 1050 1051 void vboxDoResize(void *re); 1052 1051 1053 // void vboxPaintEvent (QPaintEvent *pe) {vboxPerformGLOp(&VBoxGLWidget::vboxDoPaint, pe); } 1052 1054 void vboxResizeEvent (class VBoxResizeEvent *re) {vboxPerformGLOp(&VBoxGLWidget::vboxDoResize, re); } 1053 1055 1054 1056 void vboxProcessVHWACommands(class VBoxVHWACommandElementProcessor * pPipe) {vboxPerformGLOp(&VBoxGLWidget::vboxDoProcessVHWACommands, pPipe);} 1055 #ifdef VBOX_WITH_VIDEOHWACCEL 1056 void vboxVHWACmd (struct _VBOXVHWACMD * pCmd) {vboxPerformGLOp(&VBoxGLWidget::vboxDoVHWACmd, pCmd);} 1057 #endif 1057 1058 1058 class VBoxVHWAGlProgramMngr * vboxVHWAGetGlProgramMngr() { return mpMngr; } 1059 1059 … … 1096 1096 static void setupMatricies(const QSize &display); 1097 1097 static void adjustViewport(const QSize &display, const QRect &viewport); 1098 void vboxDoResize(void *re);1099 1098 // void vboxDoPaint(void *rec); 1100 1099 -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxFBOverlay.cpp
r23365 r23548 690 690 g_vboxVHWAGlSupportInitialized = true; 691 691 692 if (!QGLContext(QGLFormat::defaultFormat()).isValid())693 return;692 // if (!QGLContext(QGLFormat::defaultFormat()).isValid()) 693 // return; 694 694 695 695 static QGLWidget *pTmpContextHolder = NULL; … … 5461 5461 mContainer->height()); 5462 5462 5463 mpOverlayWidget->vbox ResizeEvent(&re);5463 mpOverlayWidget->vboxDoResize(&re); 5464 5464 return true; 5465 5465 }
Note:
See TracChangeset
for help on using the changeset viewer.