FreeRDP
|
#include <freerdp/config.h>
#include <stdio.h>
#include <winpr/crt.h>
#include <winpr/assert.h>
#include <freerdp/log.h>
#include <freerdp/update.h>
#include <freerdp/freerdp.h>
#include <winpr/stream.h>
#include "brush.h"
#include "cache.h"
Macros | |
#define | TAG FREERDP_TAG("cache.brush") |
Functions | |
static BOOL | update_gdi_patblt (rdpContext *context, PATBLT_ORDER *patblt) |
static BOOL | update_gdi_polygon_sc (rdpContext *context, const POLYGON_SC_ORDER *polygon_sc) |
static BOOL | update_gdi_polygon_cb (rdpContext *context, POLYGON_CB_ORDER *polygon_cb) |
static BOOL | update_gdi_cache_brush (rdpContext *context, const CACHE_BRUSH_ORDER *cacheBrush) |
void * | brush_cache_get (rdpBrushCache *brushCache, UINT32 index, UINT32 *bpp) |
void | brush_cache_put (rdpBrushCache *brushCache, UINT32 index, void *entry, UINT32 bpp) |
void | brush_cache_register_callbacks (rdpUpdate *update) |
rdpBrushCache * | brush_cache_new (rdpContext *context) |
void | brush_cache_free (rdpBrushCache *brushCache) |
void | free_cache_brush_order (rdpContext *context, CACHE_BRUSH_ORDER *order) |
CACHE_BRUSH_ORDER * | copy_cache_brush_order (rdpContext *context, const CACHE_BRUSH_ORDER *order) |
#define TAG FREERDP_TAG("cache.brush") |
FreeRDP: A Remote Desktop Protocol Implementation Brush Cache
Copyright 2011 Marc-Andre Moreau marca ndre .more au@g mail. 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.
void brush_cache_free | ( | rdpBrushCache * | brushCache | ) |
void* brush_cache_get | ( | rdpBrushCache * | brushCache, |
UINT32 | index, | ||
UINT32 * | bpp | ||
) |
rdpBrushCache* brush_cache_new | ( | rdpContext * | context | ) |
void brush_cache_put | ( | rdpBrushCache * | brushCache, |
UINT32 | index, | ||
void * | entry, | ||
UINT32 | bpp | ||
) |
void brush_cache_register_callbacks | ( | rdpUpdate * | update | ) |
CACHE_BRUSH_ORDER* copy_cache_brush_order | ( | rdpContext * | context, |
const CACHE_BRUSH_ORDER * | order | ||
) |
void free_cache_brush_order | ( | rdpContext * | context, |
CACHE_BRUSH_ORDER * | order | ||
) |
|
static |
|
static |
|
static |
|
static |