dwrite: Use version neutral variable name.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7d18bbe860
commit
1188579cb5
|
@ -4903,14 +4903,14 @@ static void glyphrunanalysis_render(struct dwrite_glyphrunanalysis *analysis, DW
|
||||||
{
|
{
|
||||||
static const BYTE masks[8] = {0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01};
|
static const BYTE masks[8] = {0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01};
|
||||||
struct dwrite_glyphbitmap glyph_bitmap;
|
struct dwrite_glyphbitmap glyph_bitmap;
|
||||||
IDWriteFontFace4 *fontface2;
|
IDWriteFontFace4 *fontface;
|
||||||
D2D_POINT_2F origin;
|
D2D_POINT_2F origin;
|
||||||
UINT32 i, size;
|
UINT32 i, size;
|
||||||
BOOL is_rtl;
|
BOOL is_rtl;
|
||||||
HRESULT hr;
|
HRESULT hr;
|
||||||
RECT *bbox;
|
RECT *bbox;
|
||||||
|
|
||||||
hr = IDWriteFontFace_QueryInterface(analysis->run.fontFace, &IID_IDWriteFontFace4, (void**)&fontface2);
|
hr = IDWriteFontFace_QueryInterface(analysis->run.fontFace, &IID_IDWriteFontFace4, (void **)&fontface);
|
||||||
if (FAILED(hr)) {
|
if (FAILED(hr)) {
|
||||||
WARN("failed to get IDWriteFontFace4, 0x%08x\n", hr);
|
WARN("failed to get IDWriteFontFace4, 0x%08x\n", hr);
|
||||||
return;
|
return;
|
||||||
|
@ -4925,7 +4925,7 @@ static void glyphrunanalysis_render(struct dwrite_glyphrunanalysis *analysis, DW
|
||||||
is_rtl = analysis->run.bidiLevel & 1;
|
is_rtl = analysis->run.bidiLevel & 1;
|
||||||
|
|
||||||
memset(&glyph_bitmap, 0, sizeof(glyph_bitmap));
|
memset(&glyph_bitmap, 0, sizeof(glyph_bitmap));
|
||||||
glyph_bitmap.fontface = fontface2;
|
glyph_bitmap.fontface = fontface;
|
||||||
glyph_bitmap.emsize = analysis->run.fontEmSize * analysis->ppdip;
|
glyph_bitmap.emsize = analysis->run.fontEmSize * analysis->ppdip;
|
||||||
glyph_bitmap.nohint = is_natural_rendering_mode(analysis->rendering_mode);
|
glyph_bitmap.nohint = is_natural_rendering_mode(analysis->rendering_mode);
|
||||||
glyph_bitmap.type = type;
|
glyph_bitmap.type = type;
|
||||||
|
@ -5013,7 +5013,7 @@ static void glyphrunanalysis_render(struct dwrite_glyphrunanalysis *analysis, DW
|
||||||
origin.y += advance->y;
|
origin.y += advance->y;
|
||||||
}
|
}
|
||||||
|
|
||||||
IDWriteFontFace4_Release(fontface2);
|
IDWriteFontFace4_Release(fontface);
|
||||||
|
|
||||||
analysis->flags |= RUNANALYSIS_BITMAP_READY;
|
analysis->flags |= RUNANALYSIS_BITMAP_READY;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue