2011-10-21 01:28:59 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-10-21 01:28:59 +04:00
|
|
|
* Graphical Objects
|
|
|
|
*
|
|
|
|
* Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2016-04-05 18:07:45 +03:00
|
|
|
* Copyright 2016 Armin Novak <armin.novak@thincast.com>
|
|
|
|
* Copyright 2016 Thincast Technologies GmbH
|
2011-10-21 01:28:59 +04:00
|
|
|
*
|
|
|
|
* 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-08-15 01:09:01 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2012-11-22 05:21:08 +04:00
|
|
|
#include <winpr/crt.h>
|
|
|
|
|
2014-09-15 11:01:05 +04:00
|
|
|
#include <freerdp/log.h>
|
2011-10-21 01:28:59 +04:00
|
|
|
#include <freerdp/gdi/dc.h>
|
2011-11-09 08:26:44 +04:00
|
|
|
#include <freerdp/gdi/shape.h>
|
|
|
|
#include <freerdp/gdi/region.h>
|
2011-10-21 01:28:59 +04:00
|
|
|
#include <freerdp/gdi/bitmap.h>
|
|
|
|
|
2016-07-19 14:02:08 +03:00
|
|
|
#include "clipping.h"
|
2016-04-05 18:07:45 +03:00
|
|
|
#include "drawing.h"
|
|
|
|
#include "brush.h"
|
2011-10-21 01:28:59 +04:00
|
|
|
#include "graphics.h"
|
|
|
|
|
2014-09-15 11:01:05 +04:00
|
|
|
#define TAG FREERDP_TAG("gdi")
|
2011-11-09 21:16:09 +04:00
|
|
|
/* Bitmap Class */
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
HGDI_BITMAP gdi_create_bitmap(rdpGdi* gdi, UINT32 nWidth, UINT32 nHeight,
|
2016-07-14 13:42:24 +03:00
|
|
|
UINT32 SrcFormat, BYTE* data)
|
2011-10-21 01:28:59 +04:00
|
|
|
{
|
2016-04-05 18:07:45 +03:00
|
|
|
UINT32 nSrcStep;
|
|
|
|
UINT32 nDstStep;
|
2014-09-16 00:08:06 +04:00
|
|
|
BYTE* pSrcData;
|
|
|
|
BYTE* pDstData;
|
2011-10-21 01:28:59 +04:00
|
|
|
HGDI_BITMAP bitmap;
|
2016-07-19 14:02:08 +03:00
|
|
|
|
|
|
|
if (!gdi)
|
|
|
|
return NULL;
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
nDstStep = nWidth * GetBytesPerPixel(gdi->dstFormat);
|
2014-09-16 00:08:06 +04:00
|
|
|
pDstData = _aligned_malloc(nHeight * nDstStep, 16);
|
|
|
|
|
|
|
|
if (!pDstData)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
pSrcData = data;
|
2016-04-05 18:07:45 +03:00
|
|
|
nSrcStep = nWidth * GetBytesPerPixel(SrcFormat);
|
2016-04-23 12:25:55 +03:00
|
|
|
|
|
|
|
if (!freerdp_image_copy(pDstData, gdi->dstFormat, nDstStep, 0, 0,
|
2016-07-14 13:42:24 +03:00
|
|
|
nWidth, nHeight, pSrcData, SrcFormat, nSrcStep, 0, 0,
|
|
|
|
&gdi->palette))
|
2016-04-23 12:25:55 +03:00
|
|
|
{
|
|
|
|
_aligned_free(pDstData);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
bitmap = gdi_CreateBitmap(nWidth, nHeight, gdi->dstFormat, pDstData);
|
2011-10-21 01:28:59 +04:00
|
|
|
return bitmap;
|
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_Bitmap_New(rdpContext* context, rdpBitmap* bitmap)
|
2011-10-21 01:28:59 +04:00
|
|
|
{
|
|
|
|
gdiBitmap* gdi_bitmap;
|
|
|
|
rdpGdi* gdi = context->gdi;
|
|
|
|
gdi_bitmap = (gdiBitmap*) bitmap;
|
|
|
|
gdi_bitmap->hdc = gdi_CreateCompatibleDC(gdi->hdc);
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2015-04-26 23:28:49 +03:00
|
|
|
if (!gdi_bitmap->hdc)
|
2015-04-14 11:14:23 +03:00
|
|
|
return FALSE;
|
2011-10-21 01:28:59 +04:00
|
|
|
|
2014-07-08 23:07:19 +04:00
|
|
|
if (!bitmap->data)
|
2016-04-05 18:07:45 +03:00
|
|
|
gdi_bitmap->bitmap = gdi_CreateCompatibleBitmap(
|
2016-07-14 13:42:24 +03:00
|
|
|
gdi->hdc, bitmap->width,
|
|
|
|
bitmap->height);
|
2011-10-21 01:28:59 +04:00
|
|
|
else
|
2016-04-05 18:07:45 +03:00
|
|
|
{
|
2016-04-19 22:30:28 +03:00
|
|
|
UINT32 format = bitmap->format;
|
2016-04-05 18:07:45 +03:00
|
|
|
gdi_bitmap->bitmap = gdi_create_bitmap(gdi, bitmap->width,
|
2016-07-14 13:42:24 +03:00
|
|
|
bitmap->height,
|
|
|
|
format, bitmap->data);
|
2016-04-05 18:07:45 +03:00
|
|
|
}
|
2011-10-21 01:28:59 +04:00
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
if (!gdi_bitmap->bitmap)
|
|
|
|
{
|
2015-05-08 22:39:23 +03:00
|
|
|
gdi_DeleteDC(gdi_bitmap->hdc);
|
2015-04-14 11:14:23 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2016-07-18 18:45:30 +03:00
|
|
|
gdi_bitmap->hdc->format = gdi_bitmap->bitmap->format;
|
2015-04-26 23:28:49 +03:00
|
|
|
gdi_SelectObject(gdi_bitmap->hdc, (HGDIOBJECT) gdi_bitmap->bitmap);
|
2011-10-21 01:28:59 +04:00
|
|
|
gdi_bitmap->org_bitmap = NULL;
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2011-10-21 01:28:59 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static void gdi_Bitmap_Free(rdpContext* context, rdpBitmap* bitmap)
|
2011-10-21 01:28:59 +04:00
|
|
|
{
|
|
|
|
gdiBitmap* gdi_bitmap = (gdiBitmap*) bitmap;
|
|
|
|
|
2014-07-08 23:07:19 +04:00
|
|
|
if (gdi_bitmap)
|
2011-10-21 01:28:59 +04:00
|
|
|
{
|
|
|
|
gdi_SelectObject(gdi_bitmap->hdc, (HGDIOBJECT) gdi_bitmap->org_bitmap);
|
|
|
|
gdi_DeleteObject((HGDIOBJECT) gdi_bitmap->bitmap);
|
|
|
|
gdi_DeleteDC(gdi_bitmap->hdc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_Bitmap_Paint(rdpContext* context, rdpBitmap* bitmap)
|
2011-10-21 01:28:59 +04:00
|
|
|
{
|
|
|
|
gdiBitmap* gdi_bitmap = (gdiBitmap*) bitmap;
|
2016-07-14 13:42:24 +03:00
|
|
|
UINT32 width = bitmap->right - bitmap->left + 1;
|
|
|
|
UINT32 height = bitmap->bottom - bitmap->top + 1;
|
2016-07-11 12:05:38 +03:00
|
|
|
return gdi_BitBlt(context->gdi->primary->hdc,
|
2016-07-14 13:42:24 +03:00
|
|
|
bitmap->left, bitmap->top,
|
|
|
|
width, height, gdi_bitmap->hdc,
|
|
|
|
0, 0, GDI_SRCCOPY, &context->gdi->palette);
|
2011-10-21 01:28:59 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_Bitmap_Decompress(rdpContext* context, rdpBitmap* bitmap,
|
2016-07-15 17:23:00 +03:00
|
|
|
const BYTE* pSrcData, UINT32 width, UINT32 height,
|
2016-07-14 13:42:24 +03:00
|
|
|
UINT32 bpp, UINT32 length, BOOL compressed,
|
|
|
|
UINT32 codecId)
|
2011-10-21 01:28:59 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
UINT16 size;
|
2016-07-15 17:23:00 +03:00
|
|
|
UINT32 SrcSize = length;
|
2014-09-12 09:03:19 +04:00
|
|
|
UINT32 SrcFormat;
|
|
|
|
UINT32 bytesPerPixel;
|
2016-07-20 11:06:45 +03:00
|
|
|
UINT32 DstWidth = width;
|
|
|
|
UINT32 DstHeight = height;
|
2014-09-12 09:03:19 +04:00
|
|
|
rdpGdi* gdi = context->gdi;
|
|
|
|
bytesPerPixel = (bpp + 7) / 8;
|
2016-07-18 18:45:30 +03:00
|
|
|
size = width * height * GetBytesPerPixel(gdi->dstFormat);
|
2014-09-17 22:55:52 +04:00
|
|
|
bitmap->data = (BYTE*) _aligned_malloc(size, 16);
|
2016-07-15 17:23:00 +03:00
|
|
|
|
|
|
|
if (!bitmap->data)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
bitmap->compressed = FALSE;
|
|
|
|
bitmap->length = size;
|
|
|
|
bitmap->format = gdi->dstFormat;
|
2014-09-12 09:03:19 +04:00
|
|
|
|
|
|
|
if (compressed)
|
2012-07-24 23:05:22 +04:00
|
|
|
{
|
2014-09-12 09:03:19 +04:00
|
|
|
if (bpp < 32)
|
|
|
|
{
|
2016-07-18 12:16:36 +03:00
|
|
|
if (!interleaved_decompress(context->codecs->interleaved,
|
|
|
|
pSrcData, SrcSize,
|
2016-07-19 17:15:38 +03:00
|
|
|
width, height,
|
2016-07-18 12:16:36 +03:00
|
|
|
bpp,
|
|
|
|
bitmap->data, bitmap->format,
|
2016-07-19 17:15:38 +03:00
|
|
|
0, 0, 0, DstWidth, DstHeight,
|
2016-07-18 12:16:36 +03:00
|
|
|
&gdi->palette))
|
|
|
|
return FALSE;
|
2014-09-12 09:03:19 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-18 12:16:36 +03:00
|
|
|
if (!planar_decompress(context->codecs->planar, pSrcData, SrcSize,
|
2016-07-19 17:15:38 +03:00
|
|
|
width, height,
|
2016-07-18 12:16:36 +03:00
|
|
|
bitmap->data, bitmap->format, 0, 0, 0,
|
|
|
|
width, height, TRUE))
|
|
|
|
return FALSE;
|
2014-09-12 09:03:19 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-15 17:34:51 +03:00
|
|
|
SrcFormat = gdi_get_pixel_format(bpp, TRUE);
|
2016-07-18 12:16:36 +03:00
|
|
|
|
|
|
|
if (!freerdp_image_copy(bitmap->data, bitmap->format, 0, 0, 0,
|
2016-07-19 17:15:38 +03:00
|
|
|
DstWidth, DstHeight, pSrcData, SrcFormat,
|
2016-07-18 12:16:36 +03:00
|
|
|
0, 0, 0, &gdi->palette))
|
|
|
|
return FALSE;
|
2011-10-21 01:28:59 +04:00
|
|
|
}
|
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2011-10-21 01:28:59 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_Bitmap_SetSurface(rdpContext* context, rdpBitmap* bitmap,
|
2016-07-14 13:42:24 +03:00
|
|
|
BOOL primary)
|
2011-10-21 02:18:45 +04:00
|
|
|
{
|
|
|
|
rdpGdi* gdi = context->gdi;
|
|
|
|
|
|
|
|
if (primary)
|
|
|
|
gdi->drawing = gdi->primary;
|
|
|
|
else
|
|
|
|
gdi->drawing = (gdiBitmap*) bitmap;
|
2015-04-14 11:14:23 +03:00
|
|
|
|
|
|
|
return TRUE;
|
2011-10-21 02:18:45 +04:00
|
|
|
}
|
|
|
|
|
2011-11-09 21:16:09 +04:00
|
|
|
/* Glyph Class */
|
2016-08-05 20:38:46 +03:00
|
|
|
static BOOL gdi_Glyph_New(rdpContext* context, const rdpGlyph* glyph)
|
2011-11-09 08:26:44 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* data;
|
2011-11-09 08:26:44 +04:00
|
|
|
gdiGlyph* gdi_glyph;
|
2016-07-18 18:45:30 +03:00
|
|
|
|
|
|
|
if (!context || !glyph)
|
|
|
|
return FALSE;
|
|
|
|
|
2011-11-09 08:26:44 +04:00
|
|
|
gdi_glyph = (gdiGlyph*) glyph;
|
|
|
|
gdi_glyph->hdc = gdi_GetDC();
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
if (!gdi_glyph->hdc)
|
|
|
|
return FALSE;
|
2011-11-09 08:26:44 +04:00
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
gdi_glyph->hdc->format = PIXEL_FORMAT_MONO;
|
2011-11-09 08:26:44 +04:00
|
|
|
data = freerdp_glyph_convert(glyph->cx, glyph->cy, glyph->aj);
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
if (!data)
|
|
|
|
{
|
|
|
|
gdi_DeleteDC(gdi_glyph->hdc);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2016-04-05 18:07:45 +03:00
|
|
|
|
|
|
|
gdi_glyph->bitmap = gdi_CreateBitmap(glyph->cx, glyph->cy, PIXEL_FORMAT_MONO,
|
2016-07-14 13:42:24 +03:00
|
|
|
data);
|
2016-04-05 18:07:45 +03:00
|
|
|
|
2015-04-14 11:14:23 +03:00
|
|
|
if (!gdi_glyph->bitmap)
|
|
|
|
{
|
|
|
|
gdi_DeleteDC(gdi_glyph->hdc);
|
|
|
|
_aligned_free(data);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2011-11-09 08:26:44 +04:00
|
|
|
|
2015-04-26 23:28:49 +03:00
|
|
|
gdi_SelectObject(gdi_glyph->hdc, (HGDIOBJECT) gdi_glyph->bitmap);
|
2011-11-09 08:26:44 +04:00
|
|
|
gdi_glyph->org_bitmap = NULL;
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2011-11-09 08:26:44 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static void gdi_Glyph_Free(rdpContext* context, rdpGlyph* glyph)
|
2011-11-09 08:26:44 +04:00
|
|
|
{
|
|
|
|
gdiGlyph* gdi_glyph;
|
|
|
|
gdi_glyph = (gdiGlyph*) glyph;
|
|
|
|
|
2014-07-08 23:07:19 +04:00
|
|
|
if (gdi_glyph)
|
2011-11-09 08:26:44 +04:00
|
|
|
{
|
|
|
|
gdi_SelectObject(gdi_glyph->hdc, (HGDIOBJECT) gdi_glyph->org_bitmap);
|
|
|
|
gdi_DeleteObject((HGDIOBJECT) gdi_glyph->bitmap);
|
|
|
|
gdi_DeleteDC(gdi_glyph->hdc);
|
2016-07-18 15:30:26 +03:00
|
|
|
free(glyph->aj);
|
|
|
|
free(glyph);
|
2011-11-09 08:26:44 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-05 20:38:46 +03:00
|
|
|
static BOOL gdi_Glyph_Draw(rdpContext* context, const rdpGlyph* glyph, UINT32 x,
|
2016-07-14 13:42:24 +03:00
|
|
|
UINT32 y)
|
2011-11-09 08:26:44 +04:00
|
|
|
{
|
|
|
|
gdiGlyph* gdi_glyph;
|
2016-07-18 15:16:13 +03:00
|
|
|
rdpGdi* gdi;
|
|
|
|
|
|
|
|
if (!context || !glyph)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
gdi = context->gdi;
|
2011-11-09 08:26:44 +04:00
|
|
|
gdi_glyph = (gdiGlyph*) glyph;
|
2015-06-26 15:32:38 +03:00
|
|
|
return gdi_BitBlt(gdi->drawing->hdc, x, y, gdi_glyph->bitmap->width,
|
2016-07-14 13:42:24 +03:00
|
|
|
gdi_glyph->bitmap->height, gdi_glyph->hdc, 0, 0,
|
2016-08-05 20:38:46 +03:00
|
|
|
GDI_GLYPH_ORDER, &context->gdi->palette);
|
2011-11-09 08:26:44 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_Glyph_BeginDraw(rdpContext* context, UINT32 x, UINT32 y,
|
2016-07-14 13:42:24 +03:00
|
|
|
UINT32 width, UINT32 height, UINT32 bgcolor,
|
|
|
|
UINT32 fgcolor, BOOL fOpRedundant)
|
2011-11-09 08:26:44 +04:00
|
|
|
{
|
2016-07-19 14:02:08 +03:00
|
|
|
rdpGdi* gdi;
|
2016-07-18 13:36:22 +03:00
|
|
|
|
2016-07-19 14:02:08 +03:00
|
|
|
if (!context || !context->gdi)
|
2016-07-18 13:36:22 +03:00
|
|
|
return FALSE;
|
|
|
|
|
2016-07-19 14:02:08 +03:00
|
|
|
gdi = context->gdi;
|
2011-11-09 08:26:44 +04:00
|
|
|
|
2016-07-19 14:02:08 +03:00
|
|
|
if (!gdi->drawing || !gdi->drawing->hdc)
|
2016-07-18 15:16:13 +03:00
|
|
|
return FALSE;
|
2015-04-14 11:14:23 +03:00
|
|
|
|
2016-07-19 14:02:08 +03:00
|
|
|
if (!gdi_decode_color(gdi, bgcolor, &bgcolor, NULL))
|
|
|
|
return FALSE;
|
2016-07-18 13:36:22 +03:00
|
|
|
|
2016-07-19 14:02:08 +03:00
|
|
|
if (!gdi_decode_color(gdi, fgcolor, &fgcolor, NULL))
|
|
|
|
return FALSE;
|
2016-07-18 13:36:22 +03:00
|
|
|
|
2016-08-05 15:10:53 +03:00
|
|
|
gdi->drawing->hdc->brush = gdi_CreateSolidBrush(bgcolor);
|
2016-07-20 12:40:30 +03:00
|
|
|
|
|
|
|
if (!gdi->drawing->hdc->brush)
|
|
|
|
return FALSE;
|
|
|
|
|
2016-08-05 15:10:53 +03:00
|
|
|
gdi_SetTextColor(gdi->drawing->hdc, bgcolor);
|
|
|
|
gdi_SetBkColor(gdi->drawing->hdc, fgcolor);
|
2016-07-19 14:02:08 +03:00
|
|
|
return gdi_SetClipRgn(gdi->drawing->hdc, x, y, width, height);
|
2011-11-09 08:26:44 +04:00
|
|
|
}
|
|
|
|
|
2016-04-05 18:07:45 +03:00
|
|
|
static BOOL gdi_Glyph_EndDraw(rdpContext* context, UINT32 x, UINT32 y,
|
2016-07-14 13:42:24 +03:00
|
|
|
UINT32 width, UINT32 height, UINT32 bgcolor, UINT32 fgcolor)
|
2011-11-09 08:26:44 +04:00
|
|
|
{
|
2016-07-19 14:02:08 +03:00
|
|
|
rdpGdi* gdi;
|
|
|
|
|
|
|
|
if (!context || !context->gdi)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
gdi = context->gdi;
|
|
|
|
|
|
|
|
if (!gdi->drawing || !gdi->drawing->hdc)
|
|
|
|
return FALSE;
|
|
|
|
|
2016-07-21 11:07:42 +03:00
|
|
|
gdi_DeleteObject((HGDIOBJECT)gdi->drawing->hdc->brush);
|
2016-08-08 10:29:36 +03:00
|
|
|
gdi->drawing->hdc->brush = NULL;
|
2016-07-19 14:02:08 +03:00
|
|
|
gdi_SetNullClipRgn(gdi->drawing->hdc);
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2011-11-09 08:26:44 +04:00
|
|
|
}
|
|
|
|
|
2011-11-09 21:16:09 +04:00
|
|
|
/* Graphics Module */
|
2015-04-14 11:14:23 +03:00
|
|
|
BOOL gdi_register_graphics(rdpGraphics* graphics)
|
2011-10-21 01:28:59 +04:00
|
|
|
{
|
2016-07-21 11:07:42 +03:00
|
|
|
rdpBitmap bitmap;
|
|
|
|
rdpGlyph glyph;
|
|
|
|
bitmap.size = sizeof(gdiBitmap);
|
|
|
|
bitmap.New = gdi_Bitmap_New;
|
|
|
|
bitmap.Free = gdi_Bitmap_Free;
|
|
|
|
bitmap.Paint = gdi_Bitmap_Paint;
|
|
|
|
bitmap.Decompress = gdi_Bitmap_Decompress;
|
|
|
|
bitmap.SetSurface = gdi_Bitmap_SetSurface;
|
|
|
|
graphics_register_bitmap(graphics, &bitmap);
|
|
|
|
glyph.size = sizeof(gdiGlyph);
|
|
|
|
glyph.New = gdi_Glyph_New;
|
|
|
|
glyph.Free = gdi_Glyph_Free;
|
|
|
|
glyph.Draw = gdi_Glyph_Draw;
|
|
|
|
glyph.BeginDraw = gdi_Glyph_BeginDraw;
|
|
|
|
glyph.EndDraw = gdi_Glyph_EndDraw;
|
|
|
|
graphics_register_glyph(graphics, &glyph);
|
2015-04-14 11:14:23 +03:00
|
|
|
return TRUE;
|
2011-10-21 01:28:59 +04:00
|
|
|
}
|