Changeset 47485 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jul 31, 2013 12:44:53 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 87660
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp
r47103 r47485 342 342 } 343 343 344 STDMETHODIMP UIFrameBuffer::Notify3DEvent(ULONG uType, BYTE *p Reserved)344 STDMETHODIMP UIFrameBuffer::Notify3DEvent(ULONG uType, BYTE *pData) 345 345 { 346 346 switch (uType) 347 347 { 348 case VBOX3D_NOTIFY_EVENT_TYPE_VISIBLE_ WINDOW:348 case VBOX3D_NOTIFY_EVENT_TYPE_VISIBLE_3DDATA: 349 349 { 350 if (pReserved)351 return E_INVALIDARG; 352 353 /* Notify GUI about 3D event: */354 emit sigNotify3DEvent();350 BOOL fVisible = !!pData; 351 352 /* @todo: implement 3D visibility handling */ 353 // /* Notify GUI about 3D event: */ 354 // emit sigNotify3DEvent(); 355 355 356 356 return S_OK; -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.h
r47103 r47485 157 157 STDMETHOD(ProcessVHWACommand)(BYTE *pCommand); 158 158 159 STDMETHOD(Notify3DEvent)(ULONG uType, BYTE *p Reserved);159 STDMETHOD(Notify3DEvent)(ULONG uType, BYTE *pData); 160 160 161 161 ulong width() { return m_width; }
Note:
See TracChangeset
for help on using the changeset viewer.