sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#ifndef __GL2EXTPLATFORM_H__
|
sl@0
|
21 |
#define __GL2EXTPLATFORM_H__
|
sl@0
|
22 |
|
sl@0
|
23 |
/*
|
sl@0
|
24 |
* The purpose of this header file is to allow a platform to control which
|
sl@0
|
25 |
* gl2ext.h extensions are seen, in order to enforce source-level backwards
|
sl@0
|
26 |
* compatiblity.
|
sl@0
|
27 |
* Consider the example of disabling GL_DEPTH_COMPONENT24_OES. From gl2ext.h
|
sl@0
|
28 |
* we see this is guarded by the define GL_OES_depth24. You need to define
|
sl@0
|
29 |
* GL_OES_depth24 in this file in order to disable this extension from being
|
sl@0
|
30 |
* seen by programs compiled against gl2.h and gl2ext.h headers.
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
|
sl@0
|
33 |
/**
|
sl@0
|
34 |
@publishedAll
|
sl@0
|
35 |
@released
|
sl@0
|
36 |
*/
|
sl@0
|
37 |
|
sl@0
|
38 |
#ifdef __cplusplus
|
sl@0
|
39 |
extern "C" {
|
sl@0
|
40 |
#endif
|
sl@0
|
41 |
|
sl@0
|
42 |
/* Place #define statements as needed below to disable gl2ext.h extensions */
|
sl@0
|
43 |
|
sl@0
|
44 |
#ifdef __cplusplus
|
sl@0
|
45 |
}
|
sl@0
|
46 |
#endif
|
sl@0
|
47 |
|
sl@0
|
48 |
#endif
|