summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/texformat.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-04-03 20:57:49 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-04-03 20:57:49 +0000
commit78233887446a8f5fe66d674caf1b7ee838647ac1 (patch)
tree3ecb062cc05a387fdf2e75682d3428d8446815fa /src/mesa/main/texformat.h
parentbb5ebf17248d1d389525d4fcd9e238fb13b695bf (diff)
downloadexternal_mesa3d-78233887446a8f5fe66d674caf1b7ee838647ac1.zip
external_mesa3d-78233887446a8f5fe66d674caf1b7ee838647ac1.tar.gz
external_mesa3d-78233887446a8f5fe66d674caf1b7ee838647ac1.tar.bz2
some texture compression odds & ends
Diffstat (limited to 'src/mesa/main/texformat.h')
-rw-r--r--src/mesa/main/texformat.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/mesa/main/texformat.h b/src/mesa/main/texformat.h
index 9f4d036..6f19aac 100644
--- a/src/mesa/main/texformat.h
+++ b/src/mesa/main/texformat.h
@@ -1,10 +1,8 @@
-/* $Id: texformat.h,v 1.13 2002/10/29 20:28:49 brianp Exp $ */
-
/*
* Mesa 3-D graphics library
- * Version: 4.1
+ * Version: 5.1
*
- * Copyright (C) 1999-2002 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -67,6 +65,11 @@ enum _format {
MESA_FORMAT_YCBCR, /* YYYY YYYY UorV UorV */
MESA_FORMAT_YCBCR_REV, /* UorV UorV YYYY YYYY */
+ MESA_FORMAT_RGB_DXT1,
+ MESA_FORMAT_RGBA_DXT1,
+ MESA_FORMAT_RGBA_DXT3,
+ MESA_FORMAT_RGBA_DXT5,
+
#if 0
/* upcoming little-endian formats: */
@@ -141,6 +144,10 @@ extern const struct gl_texture_format _mesa_texformat_i8;
extern const struct gl_texture_format _mesa_texformat_ci8;
extern const struct gl_texture_format _mesa_texformat_ycbcr;
extern const struct gl_texture_format _mesa_texformat_ycbcr_rev;
+extern const struct gl_texture_format _mesa_texformat_rgb_dxt1;
+extern const struct gl_texture_format _mesa_texformat_rgba_dxt1;
+extern const struct gl_texture_format _mesa_texformat_rgba_dxt3;
+extern const struct gl_texture_format _mesa_texformat_rgba_dxt5;
/* The null format:
*/