LCOV - code coverage report
Current view: top level - canvas/source/opengl - ogl_bitmapcanvashelper.cxx (source / functions) Hit Total Coverage
Test: commit c8344322a7af75b84dd3ca8f78b05543a976dfd5 Lines: 0 17 0.0 %
Date: 2015-06-13 12:38:46 Functions: 0 7 0.0 %
Legend: Lines: hit not hit

          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: */

Generated by: LCOV version 1.11