Changeset 19798 in vbox for trunk/src/VBox/Frontends/VBoxBFE
- Timestamp:
- May 18, 2009 3:50:20 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 47438
- Location:
- trunk/src/VBox/Frontends/VBoxBFE
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/Framebuffer.h
r8155 r19798 47 47 ULONG w, ULONG h, BOOL *finished) = 0; 48 48 virtual HRESULT RequestResize(ULONG w, ULONG h, BOOL *finished) = 0; 49 virtual HRESULT SolidFill(ULONG x, ULONG y, ULONG width, ULONG height,50 ULONG color, BOOL *handled) = 0;51 virtual HRESULT CopyScreenBits(ULONG xDst, ULONG yDst, ULONG xSrc, ULONG ySrc,52 ULONG width, ULONG height, BOOL *handled) = 0;53 49 54 50 virtual HRESULT GetVisibleRegion(BYTE *aRectangles, ULONG aCount, ULONG *aCountCopied) = 0; -
trunk/src/VBox/Frontends/VBoxBFE/SDLFramebuffer.cpp
r8155 r19798 312 312 } 313 313 314 HRESULT SDLFramebuffer::SolidFill(ULONG x, ULONG y, ULONG width, ULONG height,315 ULONG color, BOOL *handled)316 {317 return E_NOTIMPL;318 }319 320 HRESULT SDLFramebuffer::CopyScreenBits(ULONG xDst, ULONG yDst, ULONG xSrc, ULONG ySrc,321 ULONG width, ULONG height, BOOL *handled)322 {323 return E_NOTIMPL;324 }325 326 314 HRESULT SDLFramebuffer::GetVisibleRegion(BYTE *aRectangles, ULONG aCount, 327 315 ULONG *aCountCopied) -
trunk/src/VBox/Frontends/VBoxBFE/SDLFramebuffer.h
r8155 r19798 53 53 ULONG w, ULONG h, BOOL *finished); 54 54 virtual HRESULT RequestResize(ULONG w, ULONG h, BOOL *finished); 55 virtual HRESULT SolidFill(ULONG x, ULONG y, ULONG width, ULONG height,56 ULONG color, BOOL *handled);57 virtual HRESULT CopyScreenBits(ULONG xDst, ULONG yDst, ULONG xSrc, ULONG ySrc,58 ULONG width, ULONG height, BOOL *handled);59 55 virtual HRESULT GetVisibleRegion(BYTE *aRectangles, ULONG aCount, ULONG *aCountCopied); 60 56 virtual HRESULT SetVisibleRegion(BYTE *aRectangles, ULONG aCount);
Note:
See TracChangeset
for help on using the changeset viewer.