Changeset 22189 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Aug 11, 2009 7:28:42 PM (15 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxFrameBuffer.h
r22136 r22189 1387 1387 #ifdef VBOX_WITH_VIDEOHWACCEL 1388 1388 STDMETHOD(ProcessVHWACommand)(BYTE *pCommand); 1389 1390 1391 static bool isAcceleration2DVideoAvailable(); 1389 1392 #endif 1390 1393 -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxGlobal.h
r22173 r22189 749 749 750 750 #ifdef VBOX_WITH_VIDEOHWACCEL 751 static bool isAcceleration2DVideoAvailable() { /* TODO: */ return true; }751 static bool isAcceleration2DVideoAvailable(); 752 752 VBoxDefs::RenderMode vmAcceleration2DVideoRenderMode() { return VBoxDefs::QGLMode; } 753 753 #endif -
trunk/src/VBox/Frontends/VirtualBox/src/VBoxGlobal.cpp
r22173 r22189 36 36 #endif 37 37 #include "VBoxUpdateDlg.h" 38 39 #ifdef VBOX_WITH_VIDEOHWACCEL 40 #include "VBoxFrameBuffer.h" 41 #endif 38 42 39 43 /* Qt includes */ … … 4065 4069 } 4066 4070 } 4071 4072 #ifdef VBOX_WITH_VIDEOHWACCEL 4073 /* static */ 4074 bool VBoxGlobal::isAcceleration2DVideoAvailable() 4075 { 4076 return VBoxQGLFrameBuffer::isAcceleration2DVideoAvailable(); 4077 } 4078 #endif 4067 4079 4068 4080 // Public slots
Note:
See TracChangeset
for help on using the changeset viewer.