os/mm/mm_plat/display_posting_api/inc/posting_surface.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:     Header file for S60 display posting API
    15 *
    16 */
    17 
    18 
    19 
    20 
    21 
    22 /**
    23 *   Constructor of TPostingCapab class
    24 */
    25 inline CPostingSurface::TPostingCapab::TPostingCapab():
    26         iMaxSourceSize(0),
    27         iMaxPixelSize( 0, 0 ),
    28         iSupportedRotations(0),
    29         iSupportsMirroring(EFalse),
    30         iSupportsScaling(EFalse),
    31         iSupportsBrightnessControl(EFalse),
    32         iSupportsContrastControl(EFalse),
    33         iSupportedPostingBuffering(EBufferingInvalid),
    34         iSupportedBufferTypes(EBufferTypeInvalid)
    35     {
    36     }
    37 
    38 /**
    39 *   Constructor of TPostingSourceParams class
    40 */
    41 inline CPostingSurface::TPostingSourceParams::TPostingSourceParams():
    42         iPostingBuffering(EBufferingInvalid),
    43         iBufferType(EBufferTypeInvalid),
    44         iPostingUsage(EUsageInvalid),
    45         iSourceImageSize( 0, 0 ),
    46         iPostingFormat(EFormatInvalidValue),
    47         iPixelAspectRatioNum(0),
    48         iPixelAspectRatioDenom(0),
    49         iContentCopyRestricted(EFalse)
    50     {
    51     }
    52 
    53 /**
    54 *   Constructor of TPostingParams class
    55 */
    56 inline CPostingSurface::TPostingParams::TPostingParams():
    57         iDisplayedRect( 0, 0, 0, 0 ),
    58         iScaleToRect( 0, 0, 0, 0 ),
    59         iInputCrop( 0, 0, 0, 0 ),
    60         iMirror(EFalse),
    61         iRotation(ENoRotation),
    62         iBrightness(0),
    63         iContrast(0),
    64         iBackGround(0)//Black
    65     {
    66     }
    67 
    68 // End of File
    69