|
|
|
|
@ -178,7 +178,17 @@ class MAGNUM_EXPORT Context {
|
|
|
|
|
enum class DetectedDriver: UnsignedShort { |
|
|
|
|
#ifndef MAGNUM_TARGET_GLES |
|
|
|
|
/** Binary AMD desktop drivers on Windows and Linux */ |
|
|
|
|
AMD = 1 << 0 |
|
|
|
|
AMD = 1 << 0, |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
#ifdef MAGNUM_TARGET_GLES2 |
|
|
|
|
/**
|
|
|
|
|
* OpenGL ES 2.0 implementation by ANGLE (translated to D3D9), used |
|
|
|
|
* by browsers on Windows for Native Client and WebGL. As the WebGL |
|
|
|
|
* specification explicitly disallows exposing driver information |
|
|
|
|
* to the application, this check cannot be done reliably. |
|
|
|
|
*/ |
|
|
|
|
ProbablyAngle = 1 << 1 |
|
|
|
|
#endif |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|