os/graphics/opengles/openglesinterface/test/gles_current.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_current.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,78 @@
     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 current behaviour of graphics_openglesheaders
    1.18 +// The purpose of this source code is to thrown an error during compilation
    1.19 +// if the GLES/egl.h header does not re-direct to the system-wide EGL/egl.h
    1.20 +// The use of GLES/egl.h is a legacy, and kept to ease the transition of
    1.21 +// applications to using EGL/egl.h instead.
    1.22 +// This code must be compiled without the legacy setting
    1.23 +// __OPENGLESHEADERS_LEGACY_EGL_1_1 to ensure that GLES/egl.h re-directs
    1.24 +// to the system-wide EGL/egl.h
    1.25 +// 
    1.26 +//
    1.27 +
    1.28 +/**
    1.29 + @file
    1.30 + @internalTechnology
    1.31 + @released
    1.32 +*/
    1.33 +#include <e32base.h>
    1.34 +
    1.35 +/*
    1.36 + * Include the GLES/egl.h which we want to behave as the system-wide EGL API.
    1.37 + * Note that this file is for legacy reasons is located under the GLES directory.
    1.38 + * Note also, we don't include GLES/gl.h as we expect GLES egl.h in to do this.
    1.39 + */
    1.40 +#include <GLES/egl.h>
    1.41 +
    1.42 +#ifdef __OPENGLESHEADERS_LEGACY_EGL_1_1
    1.43 +/*
    1.44 + * If the above macro has been set unexpectedly, then it has most probably
    1.45 + * arisen because Symbian_OS.hrh defined it.  This is an error because Symbian
    1.46 + * never defines this macro in a Symbian product configuration.
    1.47 + */
    1.48 +#error "openglesheaders testcase configuration error: macro __OPENGLESHEADERS_LEGACY_EGL_1_1 should not be defined"
    1.49 +#endif
    1.50 +
    1.51 +#ifndef GL_TRUE
    1.52 +#error "openglesheaders testcase failure: GLES/egl.h behaviour requires egl.h to include gl.h"
    1.53 +#endif
    1.54 +
    1.55 +#ifndef EGL_DEFAULT_DISPLAY
    1.56 +#error "openglesheaders testcase failure: GLES/egl.h behaviour requires egl.h to include egltypes.h"
    1.57 +#endif
    1.58 +
    1.59 +#ifndef EGL_VERSION_1_1
    1.60 +#error "openglesheaders testcase failure: GLES/egl.h behaviour requires EGL 1.1 API to be seen"
    1.61 +#endif
    1.62 +
    1.63 +#ifndef EGL_VERSION_1_2
    1.64 +#error "openglesheaders testcase failure: GLES/egl.h behaviour requires symbols from all EGL versions to be seen"
    1.65 +#endif
    1.66 +
    1.67 +/*
    1.68 + * Make sure that the current egltypes.h file does exist in the GLES subdirectory.
    1.69 + */
    1.70 +#include <GLES/egltypes.h>
    1.71 +
    1.72 +#ifdef __LEGACY_EGL_1_1_EGLTYPES_H__
    1.73 +#error "openglesheaders testcase failure: GLES/egltypes.h should re-direct to the system-wide egltypes.h, not the legacy GLES egltypes.h"
    1.74 +#endif
    1.75 +
    1.76 +GLDEF_C TInt E32Main()
    1.77 +    {
    1.78 +    return 0;
    1.79 +    }
    1.80 +	
    1.81 +// Getting this far without a compilation error indicates success.