From 35084394459a2a4a8720a08357727d62d84ad381 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 11 Jul 2019 19:34:52 +0200 Subject: [PATCH] GL: clarify Context::DetectedDriver value docs. --- src/Magnum/GL/Context.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/Magnum/GL/Context.h b/src/Magnum/GL/Context.h index 64521e077..5af46be05 100644 --- a/src/Magnum/GL/Context.h +++ b/src/Magnum/GL/Context.h @@ -341,7 +341,9 @@ class MAGNUM_GL_EXPORT Context { enum class DetectedDriver: UnsignedShort { #ifndef MAGNUM_TARGET_WEBGL /** - * Binary AMD desktop drivers on Windows and Linux + * Proprietary AMD desktop drivers on Windows and Linux. In + * contrast, AMDGPU Mesa drivers report as + * @ref DetectedDriver::Mesa instead. * @requires_gles Not detectable on WebGL, as browsers * intentionally hide most of the driver information. */ @@ -369,7 +371,8 @@ class MAGNUM_GL_EXPORT Context { IntelWindows = 1 << 2, /** - * Mesa drivers on Windows and Linux. See also + * Mesa drivers on Windows and Linux. In particular, Intel, AMD + * and NVidia Mesa drivers match as this. See also * @ref DetectedDriver::Svga3D. * @requires_gles Not detectable on WebGL, as browsers * intentionally hide most of the driver information. @@ -377,7 +380,7 @@ class MAGNUM_GL_EXPORT Context { Mesa = 1 << 3, /** - * Binary NVidia drivers on Windows and Linux + * Proprietary NVidia drivers on Windows and Linux * @requires_gles Not detectable on WebGL, as browsers * intentionally hide most of the driver information. */