mirror of https://github.com/mosra/magnum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
3.5 KiB
81 lines
3.5 KiB
/* |
|
This file is part of Magnum. |
|
|
|
Copyright © 2010, 2011, 2012, 2013 Vladimír Vondruš <mosra@centrum.cz> |
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
copy of this software and associated documentation files (the "Software"), |
|
to deal in the Software without restriction, including without limitation |
|
the rights to use, copy, modify, merge, publish, distribute, sublicense, |
|
and/or sell copies of the Software, and to permit persons to whom the |
|
Software is furnished to do so, subject to the following conditions: |
|
|
|
The above copyright notice and this permission notice shall be included |
|
in all copies or substantial portions of the Software. |
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
|
DEALINGS IN THE SOFTWARE. |
|
*/ |
|
|
|
/** @page required-extensions Functionality requiring specific OpenGL version or extensions |
|
@brief List of functions not available on OpenGL 2.1 / OpenGL ES 2. |
|
|
|
The engine is meant to be run on OpenGL 3 capable hardware, but most of the |
|
functionality is working in OpenGL 2.1 hardware too (i.e. integrated Intel |
|
GPUs), unless stated otherwise. OpenGL ES is also supported. |
|
|
|
@see @ref building, @ref cmake, @ref MAGNUM_TARGET_GLES_ "MAGNUM_TARGET_GLES", |
|
@ref MAGNUM_TARGET_GLES2_ "MAGNUM_TARGET_GLES2" |
|
|
|
Following are lists of functionality requiring specific OpenGL version. In |
|
most cases it is also specified which extension is required for given |
|
functionality, so if given hardware supports required extension, it doesn't |
|
need to have required OpenGL version too (e.g. `APPLE_vertex_array_object` is |
|
supported on Intel GPUs even if they are capable of OpenGL 2.1 only). |
|
|
|
- @subpage requires-gl30 |
|
- @subpage requires-gl31 |
|
- @subpage requires-gl32 |
|
- @subpage requires-gl33 |
|
- @subpage requires-gl40 |
|
- @subpage requires-gl41 |
|
- @subpage requires-gl42 |
|
- @subpage requires-gl43 |
|
- @subpage requires-gl44 |
|
- @subpage requires-extension |
|
- @subpage requires-gl |
|
- @subpage requires-gles20 |
|
- @subpage requires-gles30 |
|
- @subpage requires-es-extension |
|
- @subpage unsupported |
|
|
|
@page requires-gl30 Functionality requiring OpenGL 3.0 |
|
@page requires-gl31 Functionality requiring OpenGL 3.1 |
|
@page requires-gl32 Functionality requiring OpenGL 3.2 |
|
@page requires-gl33 Functionality requiring OpenGL 3.3 |
|
@page requires-gl40 Functionality requiring OpenGL 4.0 |
|
@page requires-gl41 Functionality requiring OpenGL 4.1 |
|
@page requires-gl42 Functionality requiring OpenGL 4.2 |
|
@page requires-gl43 Functionality requiring OpenGL 4.3 |
|
@page requires-gl44 Functionality requiring OpenGL 4.4 |
|
|
|
@page requires-extension Functionality requiring specific OpenGL extension |
|
|
|
@page requires-gl Functionality requiring desktop OpenGL (not available on OpenGL ES) |
|
@see @ref MAGNUM_TARGET_GLES_ "MAGNUM_TARGET_GLES" |
|
|
|
@page requires-gles20 Functionality requiring OpenGL ES 2.0 (not available in ES 3.0 and desktop OpenGL) |
|
@see @ref MAGNUM_TARGET_GLES2_ "MAGNUM_TARGET_GLES2" |
|
|
|
@page requires-gles30 Functionality requiring OpenGL ES 3.0 |
|
@see @ref MAGNUM_TARGET_GLES3_ "MAGNUM_TARGET_GLES3" |
|
|
|
@page requires-es-extension Functionality requiring specific OpenGL ES extension |
|
@see @ref MAGNUM_TARGET_GLES2_ "MAGNUM_TARGET_GLES2" |
|
|
|
*/
|
|
|