move cso cache to the pipe directory

This commit is contained in:
Zack Rusin
2007-09-18 06:24:54 -04:00
parent 29789ca026
commit fbb2f840ae
7 changed files with 5 additions and 5 deletions

View File

@@ -187,8 +187,8 @@ TGSIMESA_SOURCES = \
pipe/tgsi/mesa/mesa_to_tgsi.c pipe/tgsi/mesa/mesa_to_tgsi.c
STATECACHE_SOURCES = \ STATECACHE_SOURCES = \
cso_cache/cso_hash.c \ pipe/cso_cache/cso_hash.c \
cso_cache/cso_cache.c pipe/cso_cache/cso_cache.c
STATETRACKER_SOURCES = \ STATETRACKER_SOURCES = \
state_tracker/st_atom.c \ state_tracker/st_atom.c \

View File

@@ -36,8 +36,8 @@
#include "pipe/p_state.h" #include "pipe/p_state.h"
#include "cso_cache/cso_cache.h" #include "pipe/cso_cache/cso_cache.h"
#include "cso_cache/cso_hash.h" #include "pipe/cso_cache/cso_hash.h"
/* This function will either find the state of the given template /* This function will either find the state of the given template
* in the cache or it will create a new state state from the given * in the cache or it will create a new state state from the given

View File

@@ -45,7 +45,7 @@
#include "st_program.h" #include "st_program.h"
#include "pipe/p_context.h" #include "pipe/p_context.h"
#include "pipe/draw/draw_context.h" #include "pipe/draw/draw_context.h"
#include "cso_cache/cso_cache.h" #include "pipe/cso_cache/cso_cache.h"
void st_invalidate_state(GLcontext * ctx, GLuint new_state) void st_invalidate_state(GLcontext * ctx, GLuint new_state)