openvg/openvgrefimplementation/sfopenvg/test/data/tiger.rss
author Gareth Stockwell <gareth.stockwell@accenture.com>
Fri, 05 Nov 2010 17:31:20 +0000
branchbug235_bringup_0
changeset 215 097e92a68d68
parent 6 250ac10a3d98
permissions -rw-r--r--
Added GLES 1.x spinning cube-rendering code to eglbringuptest The coordinate, color and index data are uploaded to server-side buffers by the CGLES1Cube::KhrSetup function. CGLES1Cube::KhrPaint just sets the view matrix and issues a draw command. Which demo to display can be selected by passing its name on the command line, e.g. eglbringuptest vgline eglbringuptest gles1cube If no name is provided, the application defaults to vgline.

/*
* Copyright (c) 2009 Symbian Foundation Ltd
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Symbian Foundation Ltd - initial contribution.
* 
* Contributors:
*
* Description:
* Tiger app resource
*/


//  RESOURCE IDENTIFIER
NAME    AWIZ // 4 letter ID

//  INCLUDES
#include <eikon.rh>
#include "tiger.hrh"
#include "tiger.rls"
#include <avkon.rsg>
#include <avkon.rh>
#include <avkon.mbg>
#include <appinfo.rh>

//  RESOURCE DEFINITIONS
RESOURCE RSS_SIGNATURE { }

RESOURCE TBUF { buf="Tiger"; }

RESOURCE EIK_APP_INFO
    {
    menubar = r_tiger_menubar;
    cba = R_AVKON_SOFTKEYS_OPTIONS_BACK;
    }

//----------------------------------------------------
//
//    r_tiger_menubar
//
//----------------------------------------------------
//
RESOURCE MENU_BAR r_tiger_menubar
{
    titles =
        {
            MENU_TITLE
            {
                menu_pane = r_tiger_exit;
            }
        };
}

//----------------------------------------------------
//
//    r_tiger_exit
//
//----------------------------------------------------
//
RESOURCE MENU_PANE r_tiger_exit
{
    items =
        {
            MENU_ITEM
            {
                command = EAknCmdExit;
                txt = STRING_r_tiger_exit;
            }
        };
}






//----------------------------------------------------
//
//    r_tiger_localisable_app_info
//
//----------------------------------------------------
//
RESOURCE LOCALISABLE_APP_INFO r_tiger_localisable_app_info
    {
    short_caption = STRING_r_app_short_caption_string;
    caption_and_icon =
    CAPTION_AND_ICON_INFO
        {
        caption         = STRING_r_app_caption_string;
        number_of_icons = 1;
        icon_file       = "\\resource\\apps\\tiger_icon.mif";
        };
    }

// End of File