Browse Source

Doc++

pull/278/head
Vladimír Vondruš 13 years ago
parent
commit
527ed82394
  1. 8
      src/Context.h

8
src/Context.h

@ -210,6 +210,8 @@ class MAGNUM_EXPORT Context {
/** /**
* @brief Vendor string * @brief Vendor string
* *
* The result is *not* cached, repeated queries will result in repeated
* OpenGL calls.
* @see rendererString(), @fn_gl{GetString} with @def_gl{VENDOR} * @see rendererString(), @fn_gl{GetString} with @def_gl{VENDOR}
*/ */
inline std::string vendorString() const { inline std::string vendorString() const {
@ -219,6 +221,8 @@ class MAGNUM_EXPORT Context {
/** /**
* @brief %Renderer string * @brief %Renderer string
* *
* The result is *not* cached, repeated queries will result in repeated
* OpenGL calls.
* @see vendorString(), @fn_gl{GetString} with @def_gl{RENDERER} * @see vendorString(), @fn_gl{GetString} with @def_gl{RENDERER}
*/ */
inline std::string rendererString() const { inline std::string rendererString() const {
@ -228,6 +232,8 @@ class MAGNUM_EXPORT Context {
/** /**
* @brief Version string * @brief Version string
* *
* The result is *not* cached, repeated queries will result in repeated
* OpenGL calls.
* @see shadingLanguageVersionString(), version(), @fn_gl{GetString} * @see shadingLanguageVersionString(), version(), @fn_gl{GetString}
* with @def_gl{VERSION} * with @def_gl{VERSION}
*/ */
@ -238,6 +244,8 @@ class MAGNUM_EXPORT Context {
/** /**
* @brief Shading language version string * @brief Shading language version string
* *
* The result is *not* cached, repeated queries will result in repeated
* OpenGL calls.
* @see versionString(), version(), @fn_gl{GetString} with * @see versionString(), version(), @fn_gl{GetString} with
* @def_gl{SHADING_LANGUAGE_VERSION} * @def_gl{SHADING_LANGUAGE_VERSION}
*/ */

Loading…
Cancel
Save