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 legacy behaviour of graphics_openglesheaders
|
sl@0
|
15 |
// The purpose of this source code is to throw an error during compilation
|
sl@0
|
16 |
// if the contents of the #included header files has any symbol which is not
|
sl@0
|
17 |
// part of the EGL 1.1 API specification even though later versions of EGL add new
|
sl@0
|
18 |
// symbols to the namespace in a backwards-compatible way.
|
sl@0
|
19 |
// This file must be compiled with the legacy setting
|
sl@0
|
20 |
//
|
sl@0
|
21 |
|
sl@0
|
22 |
// #define __OPENGLESHEADERS_LEGACY_EGL_1_1
|
sl@0
|
23 |
// Such a setting would normally be made in an OEM-specific system-wide
|
sl@0
|
24 |
// included .hrh file.
|
sl@0
|
25 |
//
|
sl@0
|
26 |
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
@file
|
sl@0
|
29 |
@internalTechnology
|
sl@0
|
30 |
@released
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
#include <e32base.h>
|
sl@0
|
33 |
|
sl@0
|
34 |
/*
|
sl@0
|
35 |
* Include the GLES/egl.h which we want to behave as a legacy EGL 1.1 API.
|
sl@0
|
36 |
* Note that this file is for legacy reasons is located under the GLES directory.
|
sl@0
|
37 |
* Note also, we don't include GLES/gl.h as we expect egl.h in EGL 1.1 to do this.
|
sl@0
|
38 |
*/
|
sl@0
|
39 |
#include <GLES/egl.h>
|
sl@0
|
40 |
|
sl@0
|
41 |
#ifndef __OPENGLESHEADERS_LEGACY_EGL_1_1
|
sl@0
|
42 |
#error "openglesheaders testcase configuration error: macro __OPENGLESHEADERS_LEGACY_EGL_1_1 expected"
|
sl@0
|
43 |
#endif
|
sl@0
|
44 |
|
sl@0
|
45 |
#ifndef GL_TRUE
|
sl@0
|
46 |
#error "openglesheaders testcase failure: GLES/egl.h legacy behaviour requires egl.h to include gl.h"
|
sl@0
|
47 |
#endif
|
sl@0
|
48 |
|
sl@0
|
49 |
#ifndef EGL_DEFAULT_DISPLAY
|
sl@0
|
50 |
#error "openglesheaders testcase failure: GLES/egl.h legacy behaviour requires egl.h to include egltypes.h"
|
sl@0
|
51 |
#endif
|
sl@0
|
52 |
|
sl@0
|
53 |
#ifndef EGL_VERSION_1_1
|
sl@0
|
54 |
#error "openglesheaders testcase failure: GLES/egl.h legacy behaviour requires EGL 1.1 API to be seen"
|
sl@0
|
55 |
#endif
|
sl@0
|
56 |
|
sl@0
|
57 |
#ifdef EGL_VERSION_1_2
|
sl@0
|
58 |
#error "openglesheaders testcase failure: GLES/egl.h legacy behaviour requires no EGL API symbols beyond EGL API 1.1 to be seen"
|
sl@0
|
59 |
#endif
|
sl@0
|
60 |
|
sl@0
|
61 |
/*
|
sl@0
|
62 |
* Make sure that the legacy egltypes.h file does exist in the GLES subdirectory.
|
sl@0
|
63 |
*/
|
sl@0
|
64 |
#include <GLES/egltypes.h>
|
sl@0
|
65 |
|
sl@0
|
66 |
#ifndef __LEGACY_EGL_1_1_EGLTYPES_H__
|
sl@0
|
67 |
#error "openglesheaders testcase failure: GLES/egltypes.h should re-direct to the legacy egltypes.h, not the system-wide EGL/egltypes.h"
|
sl@0
|
68 |
#endif
|
sl@0
|
69 |
|
sl@0
|
70 |
GLDEF_C TInt E32Main()
|
sl@0
|
71 |
{
|
sl@0
|
72 |
return 0;
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
// Getting this far without a compilation error indicates success.
|