2011-08-05 13:58:46 -04:00
|
|
|
/**
|
2012-10-08 23:02:04 -04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-08-05 13:58:46 -04:00
|
|
|
* Brush Cache
|
|
|
|
*
|
|
|
|
* 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_BRUSH_CACHE_H
|
|
|
|
#define FREERDP_BRUSH_CACHE_H
|
2011-08-05 13:58:46 -04:00
|
|
|
|
2011-08-16 23:54:42 -04:00
|
|
|
#include <freerdp/api.h>
|
2011-08-05 13:58:46 -04:00
|
|
|
#include <freerdp/types.h>
|
2011-10-20 23:15:18 -04:00
|
|
|
#include <freerdp/freerdp.h>
|
|
|
|
#include <freerdp/update.h>
|
2013-03-21 16:45:25 -04:00
|
|
|
|
|
|
|
#include <winpr/stream.h>
|
2011-08-05 13:58:46 -04:00
|
|
|
|
2011-10-20 23:15:18 -04:00
|
|
|
typedef struct _BRUSH_ENTRY BRUSH_ENTRY;
|
|
|
|
typedef struct rdp_brush_cache rdpBrushCache;
|
|
|
|
|
|
|
|
#include <freerdp/cache/cache.h>
|
|
|
|
|
2011-08-05 13:58:46 -04:00
|
|
|
struct _BRUSH_ENTRY
|
|
|
|
{
|
2012-10-09 03:26:39 -04:00
|
|
|
UINT32 bpp;
|
2011-08-05 13:58:46 -04:00
|
|
|
void* entry;
|
|
|
|
};
|
|
|
|
|
2011-10-20 17:28:59 -04:00
|
|
|
struct rdp_brush_cache
|
2011-08-05 13:58:46 -04:00
|
|
|
{
|
2011-11-21 22:28:01 -05:00
|
|
|
pPatBlt PatBlt; /* 0 */
|
|
|
|
pCacheBrush CacheBrush; /* 1 */
|
2012-02-12 17:14:59 -05:00
|
|
|
pPolygonSC PolygonSC; /* 2 */
|
|
|
|
pPolygonCB PolygonCB; /* 3 */
|
2012-10-09 03:26:39 -04:00
|
|
|
UINT32 paddingA[16 - 4]; /* 4 */
|
2011-10-20 23:15:18 -04:00
|
|
|
|
2012-10-09 03:26:39 -04:00
|
|
|
UINT32 maxEntries; /* 16 */
|
|
|
|
UINT32 maxMonoEntries; /* 17 */
|
2011-11-21 22:28:01 -05:00
|
|
|
BRUSH_ENTRY* entries; /* 18 */
|
|
|
|
BRUSH_ENTRY* monoEntries; /* 19 */
|
2012-10-09 03:26:39 -04:00
|
|
|
UINT32 paddingB[32 - 20]; /* 20 */
|
2011-11-21 22:28:01 -05:00
|
|
|
|
|
|
|
/* internal */
|
2011-10-20 23:15:18 -04:00
|
|
|
|
2011-08-05 13:58:46 -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 void* brush_cache_get(rdpBrushCache* brush, UINT32 index, UINT32* bpp);
|
|
|
|
FREERDP_API void brush_cache_put(rdpBrushCache* brush, UINT32 index, void* entry, UINT32 bpp);
|
2011-08-05 13:58:46 -04:00
|
|
|
|
2011-10-20 23:15:18 -04:00
|
|
|
FREERDP_API void brush_cache_register_callbacks(rdpUpdate* update);
|
|
|
|
|
2011-10-11 18:51:45 -04:00
|
|
|
FREERDP_API rdpBrushCache* brush_cache_new(rdpSettings* settings);
|
|
|
|
FREERDP_API void brush_cache_free(rdpBrushCache* brush);
|
2011-08-05 13:58:46 -04:00
|
|
|
|
2013-01-21 13:05:58 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-12-14 00:25:48 -05:00
|
|
|
#endif /* FREERDP_BRUSH_CACHE_H */
|