os/graphics/opengles/openglesinterface/test/gles_legacy.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/opengles/openglesinterface/test/gles_legacy.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,75 @@
     1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// Test case code for checking legacy behaviour of graphics_openglesheaders
    1.18 +// The purpose of this source code is to throw an error during compilation
    1.19 +// if the contents of the #included header files has any symbol which is not
    1.20 +// part of the EGL 1.1 API specification even though later versions of EGL add new
    1.21 +// symbols to the namespace in a backwards-compatible way.
    1.22 +// This file must be compiled with the legacy setting
    1.23 +//
    1.24 +
    1.25 +// #define __OPENGLESHEADERS_LEGACY_EGL_1_1
    1.26 +// Such a setting would normally be made in an OEM-specific system-wide
    1.27 +// included .hrh file.
    1.28 +//
    1.29 +
    1.30 +/**
    1.31 + @file
    1.32 + @internalTechnology
    1.33 + @released
    1.34 +*/
    1.35 +#include <e32base.h>
    1.36 +
    1.37 +/*
    1.38 + * Include the GLES/egl.h which we want to behave as a legacy EGL 1.1 API.
    1.39 + * Note that this file is for legacy reasons is located under the GLES directory.
    1.40 + * Note also, we don't include GLES/gl.h as we expect egl.h in EGL 1.1 to do this.
    1.41 + */
    1.42 +#include <GLES/egl.h>
    1.43 +
    1.44 +#ifndef __OPENGLESHEADERS_LEGACY_EGL_1_1
    1.45 +#error "openglesheaders testcase configuration error: macro __OPENGLESHEADERS_LEGACY_EGL_1_1 expected"
    1.46 +#endif
    1.47 +
    1.48 +#ifndef GL_TRUE
    1.49 +#error "openglesheaders testcase failure: GLES/egl.h legacy behaviour requires egl.h to include gl.h"
    1.50 +#endif
    1.51 +
    1.52 +#ifndef EGL_DEFAULT_DISPLAY
    1.53 +#error "openglesheaders testcase failure: GLES/egl.h legacy behaviour requires egl.h to include egltypes.h"
    1.54 +#endif
    1.55 +
    1.56 +#ifndef EGL_VERSION_1_1
    1.57 +#error "openglesheaders testcase failure: GLES/egl.h legacy behaviour requires EGL 1.1 API to be seen"
    1.58 +#endif
    1.59 +
    1.60 +#ifdef EGL_VERSION_1_2
    1.61 +#error "openglesheaders testcase failure: GLES/egl.h legacy behaviour requires no EGL API symbols beyond EGL API 1.1 to be seen"
    1.62 +#endif
    1.63 +
    1.64 +/*
    1.65 + * Make sure that the legacy egltypes.h file does exist in the GLES subdirectory.
    1.66 + */
    1.67 +#include <GLES/egltypes.h>
    1.68 +
    1.69 +#ifndef __LEGACY_EGL_1_1_EGLTYPES_H__
    1.70 +#error "openglesheaders testcase failure: GLES/egltypes.h should re-direct to the legacy egltypes.h, not the system-wide EGL/egltypes.h"
    1.71 +#endif
    1.72 +
    1.73 +GLDEF_C TInt E32Main()
    1.74 +    {
    1.75 +    return 0;
    1.76 +    }
    1.77 +	
    1.78 +// Getting this far without a compilation error indicates success.