uiacceltk/hitchcock/AlfRenderStage/group/alfnonsupportedwscommands.rss
changeset 0 15bf7259bb7c
child 3 d8a3531bc6b8
equal deleted inserted replaced
-1:000000000000 0:15bf7259bb7c
       
     1 /*
       
     2 * Copyright (c) 2008 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:   Resource definitions for project alfrenderstageplugin
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 NAME ALFR
       
    21 
       
    22 #include <eikon.rh>
       
    23 #include <avkon.rh>
       
    24 #include <avkon.rsg>
       
    25 #include <huiwscanvascommands.h>
       
    26 
       
    27 RESOURCE RSS_SIGNATURE { }
       
    28 
       
    29 RESOURCE TBUF { buf=""; }
       
    30 
       
    31 // ---------------------------------------------------------------------------
       
    32 // NON_SUPPORTED_COMMAND_ARRAY
       
    33 // 
       
    34 // ---------------------------------------------------------------------------
       
    35 //
       
    36 STRUCT NON_SUPPORTED_COMMAND_ARRAY
       
    37     {
       
    38     STRUCT non_supported_command[];
       
    39     }
       
    40 
       
    41 // ---------------------------------------------------------------------------
       
    42 // SUPPORTED_PARAMETER
       
    43 // 
       
    44 // ---------------------------------------------------------------------------
       
    45 //
       
    46 STRUCT SUPPORTED_PARAMETER
       
    47     {
       
    48     BYTE value = 0;
       
    49     BYTE bitgdi  = 0;  
       
    50     BYTE vg10    = 0;
       
    51     BYTE gles10  = 0;
       
    52     BYTE gles11  = 0;
       
    53     BYTE gles11DSA = 0;
       
    54     BYTE gles20 = 0;
       
    55     }
       
    56 // ---------------------------------------------------------------------------
       
    57 // NON_SUPPORTED_COMMAND
       
    58 // 
       
    59 // ---------------------------------------------------------------------------
       
    60 //
       
    61 STRUCT NON_SUPPORTED_COMMAND
       
    62     {
       
    63     BYTE command = 0;
       
    64     BYTE bitgdi  = 1;  
       
    65     BYTE vg10    = 1;
       
    66     BYTE gles10  = 1;
       
    67     BYTE gles11  = 1;
       
    68     BYTE gles11DSA = 1;
       
    69     BYTE gles20 = 1;
       
    70     BYTE possible_performance_problem_in_window = 0;
       
    71     STRUCT supported_parameter[];
       
    72     }
       
    73 
       
    74 // ---------------------------------------------------------------------------
       
    75 // r_alf_non_supported_commands_array
       
    76 // Contains non supported commands. Non supported commands can be defined by
       
    77 // renderer. AlfRenderStage will mark frames, that contain unsupported
       
    78 // commands for renderer in use.
       
    79 // ---------------------------------------------------------------------------
       
    80 //
       
    81 RESOURCE NON_SUPPORTED_COMMAND_ARRAY r_alf_non_supported_commands_array
       
    82     {
       
    83     non_supported_command = 
       
    84     {
       
    85     // This is deprecated. Supported commands are hardcoded to CAlfRsGc
       
    86     };
       
    87     }
       
    88