diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-10-30 12:24:05 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-10-30 12:25:25 -0600 |
commit | df174bdb818d4e21652d49c73ff17722e34a38b9 (patch) | |
tree | 3e9c160e6461d7e1a2717e9dbe67a393aa1ad53d /src/mesa/state_tracker/st_context.h | |
parent | 3e317996400778c3197bdaa7d95f8712205e589b (diff) |
added pixel_transfer_cache
Diffstat (limited to 'src/mesa/state_tracker/st_context.h')
-rw-r--r-- | src/mesa/state_tracker/st_context.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_context.h b/src/mesa/state_tracker/st_context.h index 3774a999ab..4de70a3b2e 100644 --- a/src/mesa/state_tracker/st_context.h +++ b/src/mesa/state_tracker/st_context.h @@ -28,7 +28,8 @@ #ifndef ST_CONTEXT_H #define ST_CONTEXT_H -#include "mtypes.h" +#include "main/mtypes.h" +#include "shader/prog_cache.h" #include "pipe/p_state.h" @@ -133,6 +134,7 @@ struct st_context struct st_fragment_program *fp; /**< Currently bound fragment program */ struct gl_fragment_program *pixel_transfer_program; + struct gl_program_cache *pixel_transfer_cache; /** * Buffer object which stores the ctx->Current.Attrib[] values. |