diff options
Diffstat (limited to 'src/mesa/main/texformat.h')
-rw-r--r-- | src/mesa/main/texformat.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mesa/main/texformat.h b/src/mesa/main/texformat.h index 9d0497708c..802f4acefb 100644 --- a/src/mesa/main/texformat.h +++ b/src/mesa/main/texformat.h @@ -1,4 +1,4 @@ -/* $Id: texformat.h,v 1.9 2002/06/15 02:38:16 brianp Exp $ */ +/* $Id: texformat.h,v 1.10 2002/09/21 16:51:25 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -64,6 +64,9 @@ enum _format { MESA_FORMAT_L8, /* LLLL LLLL */ MESA_FORMAT_I8, /* IIII IIII */ MESA_FORMAT_CI8, /* CCCC CCCC */ + MESA_FORMAT_YCBCR, /* YYYY YYYY UorV UorV */ + MESA_FORMAT_YCBCR_REV, /* UorV UorV YYYY YYYY */ + #if 0 /* upcoming little-endian formats: */ @@ -141,6 +144,8 @@ extern const struct gl_texture_format _mesa_texformat_a8; extern const struct gl_texture_format _mesa_texformat_l8; extern const struct gl_texture_format _mesa_texformat_i8; extern const struct gl_texture_format _mesa_texformat_ci8; +extern const struct gl_texture_format _meas_texformat_ycbcr; +extern const struct gl_texture_format _meas_texformat_ycbcr_rev; /* The null format: */ |