javauis/lcdui_akn/lcdgd/src/lcdgdrv.cpp
branchRCL_3
changeset 19 04becd199f91
equal deleted inserted replaced
16:f5050f1da672 19: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 #include <graphicsaccelerator.h>
       
    19 #include <fbs.h>
       
    20 #include <ecom/ecom.h>
       
    21 #include <ecom/implementationproxy.h>
       
    22 #include <lcdgdrv.h>
       
    23 #include "lcdgd.hrh"
       
    24 #include "lcdgdrvif.h"
       
    25 #include "lcdtransform.h"
       
    26 #include "calctransform.h"
       
    27 #include "collision.h"
       
    28 
       
    29 
       
    30 #ifdef _DEBUG
       
    31 TBool DbgValidateImageType(const TImageType& aType);
       
    32 TBool DbgValidateRendererArray(const TImageRenderer aRendererArray[], TInt aCount);
       
    33 #endif
       
    34 
       
    35 /**
       
    36  * Factory.
       
    37  */
       
    38 EXPORT_C CLcdGraphicsDriver* CLcdGraphicsDriver::NewL(TDisplayMode aDrawingMode)
       
    39 {
       
    40     return CLcdGraphicsDriverImpl::NewL(aDrawingMode);
       
    41 }
       
    42