Rename directories again?!

Some git wierdness going on.
This commit is contained in:
Keith Whitwell
2007-06-14 18:23:43 +01:00
parent 6393cda676
commit 943964a1e5
44 changed files with 302 additions and 4812 deletions

View File

@@ -30,19 +30,19 @@
*/
#include "st_context.h"
#include "softpipe/sp_context.h"
#include "pipe/p_context.h"
#include "st_atom.h"
static void update_fs( struct st_context *st )
{
struct softpipe_fs_state fs;
struct pipe_fs_state fs;
fs.fp = st->ctx->FragmentProgram._Current;
if (memcmp(&fs, &st->state.fs, sizeof(fs)) != 0) {
st->state.fs = fs;
st->softpipe->set_fs_state(st->softpipe, &fs);
st->pipe->set_fs_state(st->pipe, &fs);
}
}