diff options
author | Brian Paul <[email protected]> | 2009-09-30 21:00:16 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-09-30 21:00:16 -0600 |
commit | 3fa7dbf368bb060220e9f78e666b00d6827166a6 (patch) | |
tree | 83cf26eb834b50f174c496fc4467db65bdba9e48 /src/mesa/main/formats.h | |
parent | 74ae14a2bde4f87a554c3d96e6f4a9a02591308d (diff) |
mesa: remove GLchan-based formats; use hw 8-bit/channel formats instead
Removed: MESA_FORMAT_RGBA, RGB, ALPHA, LUMINANCE, LUMINANCE_ALPHA, INTENSITY.
Diffstat (limited to 'src/mesa/main/formats.h')
-rw-r--r-- | src/mesa/main/formats.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/mesa/main/formats.h b/src/mesa/main/formats.h index dbde28e727a..9235828a0f7 100644 --- a/src/mesa/main/formats.h +++ b/src/mesa/main/formats.h @@ -43,6 +43,7 @@ typedef enum { MESA_FORMAT_NONE = 0, + /** * \name Basic hardware formats */ @@ -115,18 +116,6 @@ typedef enum /*@}*/ /** - * \name Generic GLchan-based formats. (XXX obsolete!) - */ - /*@{*/ - MESA_FORMAT_RGBA, - MESA_FORMAT_RGB, - MESA_FORMAT_ALPHA, - MESA_FORMAT_LUMINANCE, - MESA_FORMAT_LUMINANCE_ALPHA, - MESA_FORMAT_INTENSITY, - /*@}*/ - - /** * \name Floating point texture formats. */ /*@{*/ |