sl@0: /* sl@0: * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #ifndef __GL2EXTPLATFORM_H__ sl@0: #define __GL2EXTPLATFORM_H__ sl@0: sl@0: /* sl@0: * The purpose of this header file is to allow a platform to control which sl@0: * gl2ext.h extensions are seen, in order to enforce source-level backwards sl@0: * compatiblity. sl@0: * Consider the example of disabling GL_DEPTH_COMPONENT24_OES. From gl2ext.h sl@0: * we see this is guarded by the define GL_OES_depth24. You need to define sl@0: * GL_OES_depth24 in this file in order to disable this extension from being sl@0: * seen by programs compiled against gl2.h and gl2ext.h headers. sl@0: */ sl@0: sl@0: /** sl@0: @publishedAll sl@0: @released sl@0: */ sl@0: sl@0: #ifdef __cplusplus sl@0: extern "C" { sl@0: #endif sl@0: sl@0: /* Place #define statements as needed below to disable gl2ext.h extensions */ sl@0: sl@0: #ifdef __cplusplus sl@0: } sl@0: #endif sl@0: sl@0: #endif