summaryrefslogtreecommitdiff
path: root/src/mesa/main/mtypes.h
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-10-31 12:45:32 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-10-31 12:45:32 -0600
commitf4a5ea2ccb472958a4635c606e9510011bceaa3d (patch)
treedfa06910da217c6b5b9ccf3a40ee8a17a47f7a61 /src/mesa/main/mtypes.h
parenta35a2fc0d3aaa795a0088bfc390b98a033fc28de (diff)
Update texenvprogram.c code to use prog_cache.c routines.
Diffstat (limited to 'src/mesa/main/mtypes.h')
-rw-r--r--src/mesa/main/mtypes.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index b435c29793..8e49431a8f 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -1557,17 +1557,6 @@ struct gl_texture_unit
/*@}*/
};
-struct texenvprog_cache_item {
- GLuint hash;
- void *key;
- struct gl_fragment_program *data;
- struct texenvprog_cache_item *next;
-};
-
-struct texenvprog_cache {
- struct texenvprog_cache_item **items;
- GLuint size, n_items;
-};
/**
* Texture attribute group (GL_TEXTURE_BIT).
@@ -1599,9 +1588,6 @@ struct gl_texture_attrib
/** GL_EXT_shared_texture_palette */
GLboolean SharedPalette;
struct gl_color_table Palette;
-
- /** Cached texenv fragment programs */
- struct texenvprog_cache env_fp_cache;
};