uiacceltk/hitchcock/coretoolkit/src/HuiTextureProcessor.cpp
changeset 0 15bf7259bb7c
equal deleted inserted replaced
-1:000000000000 0:15bf7259bb7c
       
     1 /*
       
     2 * Copyright (c) 2006-2007 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:   Implementation of CHuiTextureProcessor. CHuiTextureProcessor 
       
    15 *                is the abstract base class for texture processors.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 
       
    21 #include "uiacceltk/HuiTextureProcessor.h"
       
    22 #include "uiacceltk/HuiEnv.h"
       
    23 #include "uiacceltk/HuiUtil.h"
       
    24 
       
    25 
       
    26 EXPORT_C CHuiTextureProcessor::CHuiTextureProcessor(CHuiEnv& aEnv)
       
    27         : iEnv(aEnv)
       
    28     {
       
    29     }
       
    30 
       
    31 EXPORT_C CHuiTextureProcessor::~CHuiTextureProcessor()
       
    32     {
       
    33     }
       
    34     
       
    35 
       
    36 EXPORT_C CHuiEnv& CHuiTextureProcessor::Env()
       
    37     {
       
    38     return iEnv;
       
    39     }
       
    40 
       
    41 
       
    42 EXPORT_C void CHuiTextureProcessor::Release()
       
    43     {
       
    44     HUI_DEBUG(_L("CHuiTextureProcessor::Release() - Called. -=- NOT IMPLEMENTED -=-"));
       
    45     }
       
    46     
       
    47     
       
    48 EXPORT_C void CHuiTextureProcessor::RestoreL()
       
    49     {
       
    50     HUI_DEBUG(_L("CHuiTextureProcessor::RestoreL() - Called. -=- NOT IMPLEMENTED -=-"));
       
    51     }
       
    52 
       
    53 EXPORT_C void CHuiTextureProcessor::TextureProcessorExtension(const TUid& /*aExtensionUid*/, TAny** aExtensionParams)
       
    54     {
       
    55     // If no extension with given UID was found, indicate it by returning null
       
    56     *aExtensionParams = NULL;
       
    57     }
       
    58