Browse Source

Fixed comma at the end of enumeration list (GCC 4.5 noticed it).

pull/279/head
Vladimír Vondruš 14 years ago
parent
commit
3824190a50
  1. 4
      src/AbstractImage.h

4
src/AbstractImage.h

@ -176,9 +176,11 @@ class MAGNUM_EXPORT AbstractImage {
* Four-component RGBA, unsigned normalized, each RGB component * Four-component RGBA, unsigned normalized, each RGB component
* 5bit, alpha 1bit, 16bit total. * 5bit, alpha 1bit, 16bit total.
*/ */
RGB5Alpha1 = GL_UNSIGNED_SHORT_5_5_5_1, RGB5Alpha1 = GL_UNSIGNED_SHORT_5_5_5_1
#ifndef MAGNUM_TARGET_GLES #ifndef MAGNUM_TARGET_GLES
,
/** /**
* Four-component ABGR, unsigned normalized, each RGB component * Four-component ABGR, unsigned normalized, each RGB component
* 5bit, alpha 1bit, 16bit total. * 5bit, alpha 1bit, 16bit total.

Loading…
Cancel
Save