summaryrefslogtreecommitdiff
path: root/vcl/headless/svpcairotextrender.cxx
blob: ca688d96aa81d8de8694c21e56bdab5e71ed0ca4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#include <headless/svpcairotextrender.hxx>
#include <headless/svpgdi.hxx>
#include <cairo.h>

SvpCairoTextRender::SvpCairoTextRender(SvpSalGraphics& rParent)
    : mrParent(rParent)
{
}

GlyphCache& SvpCairoTextRender::getPlatformGlyphCache()
{
    return SvpSalGraphics::getPlatformGlyphCache();
}

cairo_t* SvpCairoTextRender::getCairoContext()
{
    return mrParent.getCairoContext(false);
}

void SvpCairoTextRender::getSurfaceOffset(double& nDX, double& nDY)
{
    nDX = 0;
    nDY = 0;
}

void SvpCairoTextRender::clipRegion(cairo_t* cr)
{
    mrParent.clipRegion(cr);
}

void SvpCairoTextRender::releaseCairoContext(cairo_t* cr)
{
    mrParent.releaseCairoContext(cr, false, basegfx::B2DRange());
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */