Browse Source

Another Doxygen parsing workaround.

pull/7/head
Vladimír Vondruš 14 years ago
parent
commit
7151486e02
  1. 9
      src/Shaders/AbstractTextShader.h

9
src/Shaders/AbstractTextShader.h

@ -38,9 +38,18 @@ template<std::uint8_t dimensions> class AbstractTextShader: public AbstractShade
/** @brief Texture coordinates */
typedef Attribute<1, Vector2> TextureCoordinates;
/** @todoc Remove when Doxygen is sane */
#ifndef DOXYGEN_GENERATING_OUTPUT
enum: GLint {
#else
static const GLint
#endif
FontTextureLayer = 16 /**< @brief Layer for font texture */
#ifndef DOXYGEN_GENERATING_OUTPUT
};
#else
;
#endif
~AbstractTextShader() = 0;
};

Loading…
Cancel
Save