Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : */
9 :
10 : #include "ogl_bitmapcanvashelper.hxx"
11 :
12 : #include <canvas/debug.hxx>
13 : #include <canvas/canvastools.hxx>
14 : #include <tools/diagnose_ex.h>
15 :
16 :
17 : using namespace ::com::sun::star;
18 :
19 : namespace oglcanvas
20 : {
21 0 : BitmapCanvasHelper::BitmapCanvasHelper()
22 0 : {}
23 :
24 0 : void BitmapCanvasHelper::disposing()
25 : {
26 0 : CanvasHelper::disposing();
27 0 : }
28 :
29 0 : void BitmapCanvasHelper::init( rendering::XGraphicDevice& rDevice,
30 : SpriteDeviceHelper& rDeviceHelper,
31 : const geometry::IntegerSize2D& rSize )
32 : {
33 0 : maSize = rSize;
34 0 : CanvasHelper::init(rDevice,rDeviceHelper);
35 0 : }
36 :
37 0 : uno::Reference< rendering::XBitmap > BitmapCanvasHelper::getScaledBitmap( const geometry::RealSize2D& /*newSize*/,
38 : bool /*beFast*/ )
39 : {
40 : // TODO(F1):
41 0 : return uno::Reference< rendering::XBitmap >();
42 : }
43 :
44 0 : uno::Sequence< sal_Int8 > BitmapCanvasHelper::getData( rendering::IntegerBitmapLayout& /*bitmapLayout*/,
45 : const geometry::IntegerRectangle2D& /*rect*/ )
46 : {
47 : // TODO(F2): NYI - and improbable to ever be
48 0 : return uno::Sequence< sal_Int8 >();
49 : }
50 :
51 0 : uno::Sequence< sal_Int8 > BitmapCanvasHelper::getPixel( rendering::IntegerBitmapLayout& /*bitmapLayout*/,
52 : const geometry::IntegerPoint2D& /*pos*/ )
53 : {
54 : // TODO(F2): NYI - and improbable to ever be
55 0 : return uno::Sequence< sal_Int8 >();
56 : }
57 :
58 0 : rendering::IntegerBitmapLayout BitmapCanvasHelper::getMemoryLayout()
59 : {
60 0 : return ::canvas::tools::getStdMemoryLayout(getSize());
61 : }
62 :
63 : }
64 :
65 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|