javauis/lcdui_akn/lcdgd/inc/lcd32bpp.h
branchRCL_3
changeset 14 04becd199f91
equal deleted inserted replaced
13:f5050f1da672 14:04becd199f91
       
     1 /*
       
     2 * Copyright (c) 2005 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:
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef LCD32BPP_H
       
    19 #define LCD32BPP_H
       
    20 
       
    21 class TRect;
       
    22 class TAcceleratedBitmapInfo;
       
    23 class TLcdTransform;
       
    24 
       
    25 extern void FillTriangle32Bpp
       
    26 (
       
    27     const TAcceleratedBitmapInfo* aBitmap,
       
    28     const TPoint aPoints[],
       
    29     TUint32 aColor32Bpp,
       
    30     const TRect& aClipRect
       
    31 );
       
    32 
       
    33 
       
    34 /**
       
    35  * Opaque 32bpp to opaque 32bpp bitblt with simple transform.
       
    36  */
       
    37 extern void BitBltThirtyTwoBppSimple
       
    38 (
       
    39     const TAcceleratedBitmapInfo*   aDstColorBitmap,
       
    40     const TAcceleratedBitmapInfo*   aDstAlphaBitmap,    // ignored
       
    41     const TRect&                    aDstRect,
       
    42     const TAcceleratedBitmapInfo*   aSrcColorBitmap,
       
    43     const TAcceleratedBitmapInfo*   aSrcAlphaBitmap,    // ignored
       
    44     const TLcdTransform&            aTransform
       
    45 );
       
    46 
       
    47 /**
       
    48  * Opaque 32bpp to opaque 32bpp bitblt with transform.
       
    49  */
       
    50 extern void BitBltThirtyTwoBpp
       
    51 (
       
    52     const TAcceleratedBitmapInfo*   aDstColorBitmap,
       
    53     const TAcceleratedBitmapInfo*   aDstAlphaBitmap,    // ignored
       
    54     const TRect&                    aDstRect,
       
    55     const TAcceleratedBitmapInfo*   aSrcColorBitmap,
       
    56     const TAcceleratedBitmapInfo*   aSrcAlphaBitmap,    // ignored
       
    57     const TLcdTransform&            aTransform
       
    58 );
       
    59 
       
    60 /**
       
    61  * 32bpp color 8bpp mask to 32bpp color 8bpp mask bitblt with transform.
       
    62  */
       
    63 extern void BitBltThirtyTwoBppEightBpp
       
    64 (
       
    65     const TAcceleratedBitmapInfo*   aDstColorBitmap,
       
    66     const TAcceleratedBitmapInfo*   aDstAlphaBitmap,
       
    67     const TRect&                    aDstRect,
       
    68     const TAcceleratedBitmapInfo*   aSrcColorBitmap,
       
    69     const TAcceleratedBitmapInfo*   aSrcAlphaBitmap,
       
    70     const TLcdTransform&            aTransform
       
    71 );
       
    72 
       
    73 /**
       
    74  * 32bpp color 1bpp mask to 32bpp color 1bpp mask bitblt with transform.
       
    75  */
       
    76 extern void BitBltThirtyTwoBppOneBpp
       
    77 (
       
    78     const TAcceleratedBitmapInfo*   aDstColorBitmap,
       
    79     const TAcceleratedBitmapInfo*   aDstAlphaBitmap,
       
    80     const TRect&                    aDstRect,
       
    81     const TAcceleratedBitmapInfo*   aSrcColorBitmap,
       
    82     const TAcceleratedBitmapInfo*   aSrcAlphaBitmap,
       
    83     const TLcdTransform&            aTransform
       
    84 );
       
    85 
       
    86 /**
       
    87  * 32bpp color 32bpp mask to 32bpp color 32bpp mask bitblt with transform.
       
    88  */
       
    89 extern void BitBltThirtyTwoBppThirtyTwoBpp
       
    90 (
       
    91     const TAcceleratedBitmapInfo*   aDstColorBitmap,
       
    92     const TAcceleratedBitmapInfo*   aDstAlphaBitmap,
       
    93     const TRect&                    aDstRect,
       
    94     const TAcceleratedBitmapInfo*   aSrcColorBitmap,
       
    95     const TAcceleratedBitmapInfo*   aSrcAlphaBitmap,
       
    96     const TLcdTransform&            aTransform
       
    97 );
       
    98 
       
    99 #endif // LCD32BPP_H