Changeset 27768 in vbox for trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.h
- Timestamp:
- Mar 29, 2010 9:17:52 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.h
r27757 r27768 39 39 class UIActionsPool; 40 40 class UIConsoleCallback; 41 class UIFrameBuffer; 41 42 class UIMachine; 42 43 class UIMachineMenuBar; … … 143 144 /* return a persisted framebuffer for the given screen 144 145 * see comment below for the m_FrameBufferVector field */ 145 class UIFrameBuffer* persistedBrameBuffer(ulong screenId);146 UIFrameBuffer* frameBuffer(ulong screenId) const; 146 147 /* @return VINF_SUCCESS - on success 147 148 * VERR_INVALID_PARAMETER - if screenId is invalid */ 148 int set PersistedBrameBuffer(ulong screenId, classUIFrameBuffer* pFrameBuffer);149 int setFrameBuffer(ulong screenId, UIFrameBuffer* pFrameBuffer); 149 150 #endif 150 151 … … 214 215 #ifdef VBOX_WITH_VIDEOHWACCEL 215 216 /* When 2D is enabled we do not re-create Framebuffers. This is done 216 * 1. to avoid 2D command loss during the time slot when no framebuffer is assigned to the display 217 * 1. to avoid 2D command loss during the time slot when no framebuffer is 218 * assigned to the display 217 219 * 2. to make it easier to preserve the current 2D state */ 218 QVector< classUIFrameBuffer*> m_FrameBufferVector;220 QVector<UIFrameBuffer*> m_FrameBufferVector; 219 221 #endif 220 222
Note:
See TracChangeset
for help on using the changeset viewer.