mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 22:50:08 +00:00
114 lines
2.5 KiB
C
114 lines
2.5 KiB
C
|
/*
|
||
|
* Copyright 2021 Nikolay Sivov for CodeWeavers
|
||
|
*
|
||
|
* This library is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Lesser General Public
|
||
|
* License as published by the Free Software Foundation; either
|
||
|
* version 2.1 of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This library is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
* Lesser General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public
|
||
|
* License along with this library; if not, write to the Free Software
|
||
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||
|
*/
|
||
|
|
||
|
#include <stdarg.h>
|
||
|
#include "windef.h"
|
||
|
#include "winternl.h"
|
||
|
#include "dwrite.h"
|
||
|
#include "wine/unixlib.h"
|
||
|
|
||
|
struct create_font_object_params
|
||
|
{
|
||
|
const void *data;
|
||
|
UINT64 size;
|
||
|
unsigned int index;
|
||
|
UINT64 *object;
|
||
|
};
|
||
|
|
||
|
struct release_font_object_params
|
||
|
{
|
||
|
UINT64 object;
|
||
|
};
|
||
|
|
||
|
struct get_glyph_outline_params
|
||
|
{
|
||
|
UINT64 object;
|
||
|
unsigned int simulations;
|
||
|
unsigned int glyph;
|
||
|
float emsize;
|
||
|
struct dwrite_outline *outline;
|
||
|
};
|
||
|
|
||
|
struct get_glyph_count_params
|
||
|
{
|
||
|
UINT64 object;
|
||
|
unsigned int *count;
|
||
|
};
|
||
|
|
||
|
struct get_glyph_advance_params
|
||
|
{
|
||
|
UINT64 object;
|
||
|
unsigned int glyph;
|
||
|
unsigned int mode;
|
||
|
float emsize;
|
||
|
int *advance;
|
||
|
unsigned int *has_contours;
|
||
|
};
|
||
|
|
||
|
struct get_glyph_bbox_params
|
||
|
{
|
||
|
UINT64 object;
|
||
|
unsigned int simulations;
|
||
|
unsigned int glyph;
|
||
|
float emsize;
|
||
|
DWRITE_MATRIX m;
|
||
|
RECT *bbox;
|
||
|
};
|
||
|
|
||
|
struct get_glyph_bitmap_params
|
||
|
{
|
||
|
UINT64 object;
|
||
|
unsigned int simulations;
|
||
|
unsigned int glyph;
|
||
|
unsigned int mode;
|
||
|
float emsize;
|
||
|
DWRITE_MATRIX m;
|
||
|
RECT bbox;
|
||
|
int pitch;
|
||
|
BYTE *bitmap;
|
||
|
unsigned int *is_1bpp;
|
||
|
};
|
||
|
|
||
|
struct get_design_glyph_metrics_params
|
||
|
{
|
||
|
UINT64 object;
|
||
|
unsigned int simulations;
|
||
|
unsigned int glyph;
|
||
|
unsigned int upem;
|
||
|
unsigned int ascent;
|
||
|
DWRITE_GLYPH_METRICS *metrics;
|
||
|
};
|
||
|
|
||
|
enum font_backend_funcs
|
||
|
{
|
||
|
unix_process_attach,
|
||
|
unix_process_detach,
|
||
|
unix_create_font_object,
|
||
|
unix_release_font_object,
|
||
|
unix_get_glyph_outline,
|
||
|
unix_get_glyph_count,
|
||
|
unix_get_glyph_advance,
|
||
|
unix_get_glyph_bbox,
|
||
|
unix_get_glyph_bitmap,
|
||
|
unix_get_design_glyph_metrics,
|
||
|
};
|
||
|
|
||
|
extern unixlib_handle_t unixlib_handle DECLSPEC_HIDDEN;
|
||
|
|
||
|
#define UNIX_CALL( func, params ) __wine_unix_call( unixlib_handle, unix_ ## func, params )
|