coreModules.doxy 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*!
  2. \defgroup core GLM Core
  3. \brief The core of GLM, which implements exactly and only the GLSL specification to the degree possible.
  4. The GLM core consists of \ref core_types "C++ types that mirror GLSL types",
  5. \ref core_funcs "C++ functions that mirror the GLSL functions". It also includes
  6. \ref core_precision "a set of precision-based types" that can be used in the appropriate
  7. functions. The C++ types are all based on a basic set of \ref core_template "template types".
  8. The best documentation for GLM Core is the current GLSL specification,
  9. <a href="http://www.opengl.org/registry/doc/GLSLangSpec.4.10.6.clean.pdf">version 4.1
  10. (pdf file)</a>.
  11. There are a few \ref pg_differences "differences" between GLM core and GLSL.
  12. **/
  13. /*!
  14. \defgroup core_types Types
  15. \brief The standard types defined by the specification.
  16. These types are all typedefs of more generalized, template types. To see the definiton
  17. of these template types, go to \ref core_template.
  18. \ingroup core
  19. **/
  20. /*!
  21. \defgroup core_precision Precision types
  22. \brief Non-GLSL types that are used to define precision-based types.
  23. The GLSL language allows the user to define the precision of a particular variable.
  24. In OpenGL's GLSL, these precision qualifiers have no effect; they are there for compatibility
  25. with OpenGL ES's precision qualifiers, where they \em do have an effect.
  26. C++ has no language equivalent to precision qualifiers. So GLM provides the next-best thing:
  27. a number of typedefs of the \ref core_template that use a particular precision.
  28. None of these types make any guarantees about the actual precision used.
  29. \ingroup core
  30. **/
  31. /*!
  32. \defgroup core_template Template types
  33. \brief The generic template types used as the basis for the core types.
  34. These types are all templates used to define the actual \ref core_types.
  35. These templetes are implementation details of GLM types and should not be used explicitly.
  36. \ingroup core
  37. **/
  38. /*!
  39. \defgroup core_funcs Functions
  40. \brief The functions defined by the specification.
  41. \ingroup core
  42. **/