1 | /** @file
|
---|
2 | *
|
---|
3 | * VBox frontends: Framebuffer (FB, DirectFB):
|
---|
4 | * Declaration of VBoxDirectFB class
|
---|
5 | */
|
---|
6 |
|
---|
7 | /*
|
---|
8 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
9 | *
|
---|
10 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
11 | * available from http://www.virtualbox.org. This file is free software;
|
---|
12 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
13 | * General Public License (GPL) as published by the Free Software
|
---|
14 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
15 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
16 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
17 | */
|
---|
18 |
|
---|
19 | #ifndef __H_FRAMEBUFFER
|
---|
20 | #define __H_FRAMEBUFFER
|
---|
21 |
|
---|
22 | #include "VBoxFB.h"
|
---|
23 |
|
---|
24 | class VBoxDirectFB : public IFramebuffer
|
---|
25 | {
|
---|
26 | public:
|
---|
27 | VBoxDirectFB(IDirectFB *aDFB, IDirectFBSurface *aSurface);
|
---|
28 | virtual ~VBoxDirectFB();
|
---|
29 |
|
---|
30 | NS_DECL_ISUPPORTS
|
---|
31 |
|
---|
32 | NS_IMETHOD GetWidth(uint32 *width);
|
---|
33 | NS_IMETHOD GetHeight(uint32_t *height);
|
---|
34 | NS_IMETHOD Lock();
|
---|
35 | NS_IMETHOD Unlock();
|
---|
36 | NS_IMETHOD GetAddress(uint32_t *address);
|
---|
37 | NS_IMETHOD GetBitsPerPixel(uint32_t *bitsPerPixel);
|
---|
38 | NS_IMETHOD GetBytesPerLine(uint32_t *bytesPerLine);
|
---|
39 | NS_IMETHOD GetPixelFormat(ULONG *pixelFormat);
|
---|
40 | NS_IMETHOD GetUsesGuestVRAM(BOOL *usesGuestVRAM);
|
---|
41 | NS_IMETHOD NotifyUpdate(uint32_t x, uint32_t y,
|
---|
42 | uint32_t w, uint32_t h, PRBool *finished);
|
---|
43 | NS_IMETHOD RequestResize(ULONG aScreenId, ULONG pixelFormat, uint32_t vram,
|
---|
44 | uint32_t bitsPerPixel, uint32_t bytesPerLine,
|
---|
45 | uint32_t w, uint32_t h,
|
---|
46 | PRBool *finished);
|
---|
47 | private:
|
---|
48 | int createSurface(uint32_t w, uint32_t h);
|
---|
49 |
|
---|
50 | IDirectFB *dfb;
|
---|
51 | IDirectFBSurface *surface;
|
---|
52 | uint32_t screenWidth;
|
---|
53 | uint32_t screenHeight;
|
---|
54 | IDirectFBSurface *fbInternalSurface;
|
---|
55 | void *fbBufferAddress;
|
---|
56 | uint32_t fbWidth;
|
---|
57 | uint32_t fbHeight;
|
---|
58 | uint32_t fbPitch;
|
---|
59 | int fbSurfaceLocked;
|
---|
60 | };
|
---|
61 |
|
---|
62 |
|
---|
63 | #endif // __H_FRAMEBUFFER
|
---|
64 |
|
---|