2011-08-05 16:56:40 -04:00
|
|
|
/**
|
2012-10-08 23:02:04 -04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-08-05 16:56:40 -04:00
|
|
|
* Bitmap Cache V2
|
|
|
|
*
|
|
|
|
* Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2012-12-14 00:25:48 -05:00
|
|
|
#ifndef FREERDP_BITMAP_V2_CACHE_H
|
|
|
|
#define FREERDP_BITMAP_V2_CACHE_H
|
2011-08-05 16:56:40 -04:00
|
|
|
|
2011-08-16 23:54:42 -04:00
|
|
|
#include <freerdp/api.h>
|
2011-08-05 16:56:40 -04:00
|
|
|
#include <freerdp/types.h>
|
2011-10-13 15:51:07 -04:00
|
|
|
#include <freerdp/update.h>
|
|
|
|
#include <freerdp/freerdp.h>
|
2013-03-21 16:45:25 -04:00
|
|
|
|
|
|
|
#include <winpr/stream.h>
|
2011-08-05 16:56:40 -04:00
|
|
|
|
2011-10-13 15:51:07 -04:00
|
|
|
typedef struct _BITMAP_V2_CELL BITMAP_V2_CELL;
|
|
|
|
typedef struct rdp_bitmap_cache rdpBitmapCache;
|
|
|
|
|
|
|
|
#include <freerdp/cache/cache.h>
|
2011-08-05 16:56:40 -04:00
|
|
|
|
|
|
|
struct _BITMAP_V2_CELL
|
|
|
|
{
|
2012-10-09 03:26:39 -04:00
|
|
|
UINT32 number;
|
2011-10-13 15:51:07 -04:00
|
|
|
rdpBitmap** entries;
|
2011-08-05 16:56:40 -04:00
|
|
|
};
|
|
|
|
|
2011-10-13 15:51:07 -04:00
|
|
|
struct rdp_bitmap_cache
|
2011-08-05 16:56:40 -04:00
|
|
|
{
|
2011-11-21 22:28:01 -05:00
|
|
|
pMemBlt MemBlt; /* 0 */
|
|
|
|
pMem3Blt Mem3Blt; /* 1 */
|
|
|
|
pCacheBitmap CacheBitmap; /* 2 */
|
|
|
|
pCacheBitmapV2 CacheBitmapV2; /* 3 */
|
|
|
|
pCacheBitmapV3 CacheBitmapV3; /* 4 */
|
|
|
|
pBitmapUpdate BitmapUpdate; /* 5 */
|
2012-10-09 03:26:39 -04:00
|
|
|
UINT32 paddingA[16 - 6]; /* 6 */
|
2011-10-20 17:28:59 -04:00
|
|
|
|
2012-10-09 03:26:39 -04:00
|
|
|
UINT32 maxCells; /* 16 */
|
2011-11-21 22:28:01 -05:00
|
|
|
BITMAP_V2_CELL* cells; /* 17 */
|
2012-10-09 03:26:39 -04:00
|
|
|
UINT32 paddingB[32 - 18]; /* 18 */
|
2011-10-13 15:51:07 -04:00
|
|
|
|
2011-11-21 22:28:01 -05:00
|
|
|
/* internal */
|
2011-10-13 15:51:07 -04:00
|
|
|
|
2011-10-20 17:28:59 -04:00
|
|
|
rdpBitmap* bitmap;
|
2011-10-13 15:51:07 -04:00
|
|
|
rdpUpdate* update;
|
2011-10-20 17:28:59 -04:00
|
|
|
rdpContext* context;
|
2011-08-05 16:56:40 -04:00
|
|
|
rdpSettings* settings;
|
|
|
|
};
|
|
|
|
|
2013-01-21 13:05:58 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-10-09 03:26:39 -04:00
|
|
|
FREERDP_API rdpBitmap* bitmap_cache_get(rdpBitmapCache* bitmap_cache, UINT32 id, UINT32 index);
|
|
|
|
FREERDP_API void bitmap_cache_put(rdpBitmapCache* bitmap_cache, UINT32 id, UINT32 index, rdpBitmap* bitmap);
|
2011-10-13 15:51:07 -04:00
|
|
|
|
|
|
|
FREERDP_API void bitmap_cache_register_callbacks(rdpUpdate* update);
|
2011-08-05 16:56:40 -04:00
|
|
|
|
2011-10-11 18:51:45 -04:00
|
|
|
FREERDP_API rdpBitmapCache* bitmap_cache_new(rdpSettings* settings);
|
2011-10-13 15:51:07 -04:00
|
|
|
FREERDP_API void bitmap_cache_free(rdpBitmapCache* bitmap_cache);
|
2011-08-05 16:56:40 -04:00
|
|
|
|
2013-01-21 13:05:58 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-12-14 00:25:48 -05:00
|
|
|
#endif /* FREERDP_BITMAP_V2_CACHE_H */
|