First public contribution.
1 // Copyright (c) 2008-2009 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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Test case code for checking current behaviour of graphics_openglesheaders
15 // The purpose of this source code is to thrown an error during compilation
16 // if the GLES/egl.h header does not re-direct to the system-wide EGL/egl.h
17 // The use of GLES/egl.h is a legacy, and kept to ease the transition of
18 // applications to using EGL/egl.h instead.
19 // This code must be compiled without the legacy setting
20 // __OPENGLESHEADERS_LEGACY_EGL_1_1 to ensure that GLES/egl.h re-directs
21 // to the system-wide EGL/egl.h
33 * Include the GLES/egl.h which we want to behave as the system-wide EGL API.
34 * Note that this file is for legacy reasons is located under the GLES directory.
35 * Note also, we don't include GLES/gl.h as we expect GLES egl.h in to do this.
39 #ifdef __OPENGLESHEADERS_LEGACY_EGL_1_1
41 * If the above macro has been set unexpectedly, then it has most probably
42 * arisen because Symbian_OS.hrh defined it. This is an error because Symbian
43 * never defines this macro in a Symbian product configuration.
45 #error "openglesheaders testcase configuration error: macro __OPENGLESHEADERS_LEGACY_EGL_1_1 should not be defined"
49 #error "openglesheaders testcase failure: GLES/egl.h behaviour requires egl.h to include gl.h"
52 #ifndef EGL_DEFAULT_DISPLAY
53 #error "openglesheaders testcase failure: GLES/egl.h behaviour requires egl.h to include egltypes.h"
56 #ifndef EGL_VERSION_1_1
57 #error "openglesheaders testcase failure: GLES/egl.h behaviour requires EGL 1.1 API to be seen"
60 #ifndef EGL_VERSION_1_2
61 #error "openglesheaders testcase failure: GLES/egl.h behaviour requires symbols from all EGL versions to be seen"
65 * Make sure that the current egltypes.h file does exist in the GLES subdirectory.
67 #include <GLES/egltypes.h>
69 #ifdef __LEGACY_EGL_1_1_EGLTYPES_H__
70 #error "openglesheaders testcase failure: GLES/egltypes.h should re-direct to the system-wide egltypes.h, not the legacy GLES egltypes.h"
73 GLDEF_C TInt E32Main()
78 // Getting this far without a compilation error indicates success.