vghwinterface/vghwapiwrapper/inc/khronosapiwrapperdefs.h
branchbug235_bringup_0
changeset 53 c2ef9095503a
parent 24 a3f46bb01be2
equal deleted inserted replaced
52:39e5f73667ba 53:c2ef9095503a
       
     1 // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // 
       
    15 
       
    16 #ifndef KHRONOSAPIWRAPPERDEFS_H
       
    17 #define KHRONOSAPIWRAPPERDEFS_H
       
    18 
       
    19 #include "guestvideodriverinterfaceconstants.h"
       
    20 
       
    21 const int KMaxStackSize( VVI_PARAMETERS_INPUT_MEMORY_SIZE );//16Mb
       
    22 
       
    23 //Checks for error after every request and logs it
       
    24 #define LOG_ERROR
       
    25 
       
    26 // tracing
       
    27 //#define PRINT_TRACES
       
    28 #ifdef PRINT_TRACES
       
    29     #define TRACE(format, ...) printf(format, ##__VA_ARGS__)
       
    30 #else
       
    31     #define TRACE(format, ...)
       
    32 #endif
       
    33 
       
    34 #endif