1 | /** @file
|
---|
2 | *
|
---|
3 | * VBoxGuest -- VirtualBox Win 2000/XP guest display driver
|
---|
4 | *
|
---|
5 | * VRDP bitmap cache.
|
---|
6 | *
|
---|
7 | * Copyright (C) 2006-2007 Sun Microsystems, Inc.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
|
---|
18 | * Clara, CA 95054 USA or visit http://www.sun.com if you need
|
---|
19 | * additional information or have any questions.
|
---|
20 | */
|
---|
21 |
|
---|
22 | #ifndef __DISPLAY_VRDPBMP__H
|
---|
23 | #define __DISPLAY_VRDPBMP__H
|
---|
24 |
|
---|
25 | /* RDP cache holds about 350 tiles 64x64. Therefore
|
---|
26 | * the driver does not have to cache more then the
|
---|
27 | * RDP capacity. Most of bitmaps will be tiled, so
|
---|
28 | * number of RDP tiles will be greater than number of
|
---|
29 | * bitmaps. Also the number of bitmaps must be a power
|
---|
30 | * of 2. So the 256 is a good number.
|
---|
31 | */
|
---|
32 | #define VRDPBMP_N_CACHED_BITMAPS (256)
|
---|
33 |
|
---|
34 | #define VRDPBMP_RC_NOT_CACHED (0x0000)
|
---|
35 | #define VRDPBMP_RC_CACHED (0x0001)
|
---|
36 | #define VRDPBMP_RC_ALREADY_CACHED (0x0002)
|
---|
37 |
|
---|
38 | #define VRDPBMP_RC_F_DELETED (0x10000)
|
---|
39 |
|
---|
40 | /* Bitmap hash. */
|
---|
41 | #pragma pack (1)
|
---|
42 | typedef struct _VRDPBCHASH
|
---|
43 | {
|
---|
44 | /* A 64 bit hash value of pixels. */
|
---|
45 | uint64_t hash64;
|
---|
46 |
|
---|
47 | /* Bitmap width. */
|
---|
48 | uint16_t cx;
|
---|
49 |
|
---|
50 | /* Bitmap height. */
|
---|
51 | uint16_t cy;
|
---|
52 |
|
---|
53 | /* Bytes per pixel at the bitmap. */
|
---|
54 | uint8_t bytesPerPixel;
|
---|
55 |
|
---|
56 | /* Padding to 16 bytes. */
|
---|
57 | uint8_t padding[3];
|
---|
58 | } VRDPBCHASH;
|
---|
59 | #pragma pack ()
|
---|
60 |
|
---|
61 | typedef struct _VRDPBCENTRY
|
---|
62 | {
|
---|
63 | bool fUsed;
|
---|
64 | struct _VRDPBCENTRY *next;
|
---|
65 | struct _VRDPBCENTRY *prev;
|
---|
66 | VRDPBCHASH hash;
|
---|
67 | } VRDPBCENTRY;
|
---|
68 |
|
---|
69 | typedef struct _VRDPBC
|
---|
70 | {
|
---|
71 | VRDPBCENTRY *head;
|
---|
72 | VRDPBCENTRY *tail;
|
---|
73 | VRDPBCENTRY aEntries[VRDPBMP_N_CACHED_BITMAPS];
|
---|
74 | } VRDPBC;
|
---|
75 |
|
---|
76 | void vrdpbmpReset (VRDPBC *pCache);
|
---|
77 |
|
---|
78 | int vrdpbmpCacheSurface (VRDPBC *pCache, const SURFOBJ *pso, VRDPBCHASH *phash, VRDPBCHASH *phashDeleted);
|
---|
79 |
|
---|
80 | #endif /* __DISPLAY_VRDPBMP__H */
|
---|