Changeset 51693 in vbox
- Timestamp:
- Jun 23, 2014 4:04:07 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 94475
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/runtime
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.cpp
r51670 r51693 265 265 } 266 266 267 STDMETHODIMP UIFrameBuffer::NotifyUpdateImage(ULONG aX, 268 ULONG aY, 269 ULONG aWidth, 270 ULONG aHeight, 271 ComSafeArrayIn(BYTE, aImage)) 272 { 267 STDMETHODIMP UIFrameBuffer::NotifyUpdateImage(ULONG uX, ULONG uY, 268 ULONG uWidth, ULONG uHeight, 269 ComSafeArrayIn(BYTE, image)) 270 { 271 Q_UNUSED(uX); 272 Q_UNUSED(uY); 273 Q_UNUSED(uWidth); 274 Q_UNUSED(uHeight); 275 Q_UNUSED(image); 273 276 return E_NOTIMPL; 274 277 } … … 409 412 } 410 413 411 STDMETHODIMP UIFrameBuffer::Notify3DEvent(ULONG uType, ComSafeArrayIn(BYTE, aData))414 STDMETHODIMP UIFrameBuffer::Notify3DEvent(ULONG uType, ComSafeArrayIn(BYTE, data)) 412 415 { 413 416 /* Lock access to frame-buffer: */ … … 426 429 } 427 430 428 com::SafeArray<BYTE> data(ComSafeArrayInArg(aData));431 com::SafeArray<BYTE> eventData(ComSafeArrayInArg(data)); 429 432 switch (uType) 430 433 { … … 433 436 /* Notify machine-view with the async-signal 434 437 * about 3D overlay visibility change: */ 435 BOOL fVisible = data[0];438 BOOL fVisible = eventData[0]; 436 439 LogRel2(("UIFrameBuffer::Notify3DEvent: Sending to async-handler: " 437 440 "(VBOX3D_NOTIFY_EVENT_TYPE_VISIBLE_3DDATA = %s)\n", -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIFrameBuffer.h
r51670 r51693 27 27 28 28 /* COM includes: */ 29 #include "CFramebuffer.h"30 29 #include "CDisplaySourceBitmap.h" 31 30 … … 127 126 * @note Calls to this and #setMarkAsUnused method are synchronized (from GUI side). */ 128 127 STDMETHOD(NotifyUpdate)(ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight); 129 STDMETHOD(NotifyUpdateImage)(ULONG x, ULONG y, ULONG w, ULONG h, ComSafeArrayIn(BYTE, aImage)); 128 /** EMT callback which is not used in current implementation. */ 129 STDMETHOD(NotifyUpdateImage)(ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight, ComSafeArrayIn(BYTE, image)); 130 130 131 131 /** EMT callback: Returns whether the frame-buffer implementation is willing to support a given video-mode. … … 155 155 * @note Any EMT callback is subsequent. No any other EMT callback can be called until this one processed. 156 156 * @note Calls to this and #setMarkAsUnused method are synchronized (from GUI side). */ 157 STDMETHOD(Notify3DEvent)(ULONG uType, ComSafeArrayIn(BYTE, aData));157 STDMETHOD(Notify3DEvent)(ULONG uType, ComSafeArrayIn(BYTE, data)); 158 158 159 159 /** Returns frame-buffer data address. */ -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMouseHandler.cpp
r51476 r51693 61 61 #include "CConsole.h" 62 62 #include "CMouse.h" 63 #include "CFramebuffer.h"64 63 #include "CDisplay.h" 65 64 -
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r51679 r51693 70 70 #include "CMediumAttachment.h" 71 71 #include "CDisplay.h" 72 #include "CFramebuffer.h"73 72 #include "CNetworkAdapter.h" 74 73 #include "CHostNetworkInterface.h"
Note:
See TracChangeset
for help on using the changeset viewer.