sl@0
|
1 |
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Test case code for checking current behaviour of graphics_openglesheaders
|
sl@0
|
15 |
// The purpose of this source code is to thrown an error during compilation
|
sl@0
|
16 |
// if the GLES/egl.h header does not re-direct to the system-wide EGL/egl.h
|
sl@0
|
17 |
// The use of GLES/egl.h is a legacy, and kept to ease the transition of
|
sl@0
|
18 |
// applications to using EGL/egl.h instead.
|
sl@0
|
19 |
// This code must be compiled without the legacy setting
|
sl@0
|
20 |
// __OPENGLESHEADERS_LEGACY_EGL_1_1 to ensure that GLES/egl.h re-directs
|
sl@0
|
21 |
// to the system-wide EGL/egl.h
|
sl@0
|
22 |
//
|
sl@0
|
23 |
//
|
sl@0
|
24 |
|
sl@0
|
25 |
/**
|
sl@0
|
26 |
@file
|
sl@0
|
27 |
@internalTechnology
|
sl@0
|
28 |
@released
|
sl@0
|
29 |
*/
|
sl@0
|
30 |
#include <e32base.h>
|
sl@0
|
31 |
|
sl@0
|
32 |
/*
|
sl@0
|
33 |
* Include the GLES/egl.h which we want to behave as the system-wide EGL API.
|
sl@0
|
34 |
* Note that this file is for legacy reasons is located under the GLES directory.
|
sl@0
|
35 |
* Note also, we don't include GLES/gl.h as we expect GLES egl.h in to do this.
|
sl@0
|
36 |
*/
|
sl@0
|
37 |
#include <GLES/egl.h>
|
sl@0
|
38 |
|
sl@0
|
39 |
#ifdef __OPENGLESHEADERS_LEGACY_EGL_1_1
|
sl@0
|
40 |
/*
|
sl@0
|
41 |
* If the above macro has been set unexpectedly, then it has most probably
|
sl@0
|
42 |
* arisen because Symbian_OS.hrh defined it. This is an error because Symbian
|
sl@0
|
43 |
* never defines this macro in a Symbian product configuration.
|
sl@0
|
44 |
*/
|
sl@0
|
45 |
#error "openglesheaders testcase configuration error: macro __OPENGLESHEADERS_LEGACY_EGL_1_1 should not be defined"
|
sl@0
|
46 |
#endif
|
sl@0
|
47 |
|
sl@0
|
48 |
#ifndef GL_TRUE
|
sl@0
|
49 |
#error "openglesheaders testcase failure: GLES/egl.h behaviour requires egl.h to include gl.h"
|
sl@0
|
50 |
#endif
|
sl@0
|
51 |
|
sl@0
|
52 |
#ifndef EGL_DEFAULT_DISPLAY
|
sl@0
|
53 |
#error "openglesheaders testcase failure: GLES/egl.h behaviour requires egl.h to include egltypes.h"
|
sl@0
|
54 |
#endif
|
sl@0
|
55 |
|
sl@0
|
56 |
#ifndef EGL_VERSION_1_1
|
sl@0
|
57 |
#error "openglesheaders testcase failure: GLES/egl.h behaviour requires EGL 1.1 API to be seen"
|
sl@0
|
58 |
#endif
|
sl@0
|
59 |
|
sl@0
|
60 |
#ifndef EGL_VERSION_1_2
|
sl@0
|
61 |
#error "openglesheaders testcase failure: GLES/egl.h behaviour requires symbols from all EGL versions to be seen"
|
sl@0
|
62 |
#endif
|
sl@0
|
63 |
|
sl@0
|
64 |
/*
|
sl@0
|
65 |
* Make sure that the current egltypes.h file does exist in the GLES subdirectory.
|
sl@0
|
66 |
*/
|
sl@0
|
67 |
#include <GLES/egltypes.h>
|
sl@0
|
68 |
|
sl@0
|
69 |
#ifdef __LEGACY_EGL_1_1_EGLTYPES_H__
|
sl@0
|
70 |
#error "openglesheaders testcase failure: GLES/egltypes.h should re-direct to the system-wide egltypes.h, not the legacy GLES egltypes.h"
|
sl@0
|
71 |
#endif
|
sl@0
|
72 |
|
sl@0
|
73 |
GLDEF_C TInt E32Main()
|
sl@0
|
74 |
{
|
sl@0
|
75 |
return 0;
|
sl@0
|
76 |
}
|
sl@0
|
77 |
|
sl@0
|
78 |
// Getting this far without a compilation error indicates success.
|