diff options
author | Eric Anholt <eric@anholt.net> | 2007-12-05 15:52:13 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2007-12-05 16:44:49 -0800 |
commit | a4642f3d18bdaebaba31e5dee72fe5de9d890ffb (patch) | |
tree | aaed9266b2b92529cf11be514214deba53329c77 /src/mesa/drivers/dri/i965/brw_gs.c | |
parent | 259eacfa94a1086e4c99db83516989cc27832ef4 (diff) | |
download | external_mesa3d-a4642f3d18bdaebaba31e5dee72fe5de9d890ffb.zip external_mesa3d-a4642f3d18bdaebaba31e5dee72fe5de9d890ffb.tar.gz external_mesa3d-a4642f3d18bdaebaba31e5dee72fe5de9d890ffb.tar.bz2 |
[965] Add missing flagging of new stage programs for updating stage state.
Otherwise, choosing a new program wouldn't necessarily update the state, and
and an old program could be executed, leading to various sorts of pretty
pictures or hangs.
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_gs.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_gs.c | 31 |
1 files changed, 19 insertions, 12 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_gs.c b/src/mesa/drivers/dri/i965/brw_gs.c index 73263a5..fb41936 100644 --- a/src/mesa/drivers/dri/i965/brw_gs.c +++ b/src/mesa/drivers/dri/i965/brw_gs.c @@ -128,17 +128,6 @@ static void compile_gs_prog( struct brw_context *brw, &brw->gs.prog_data ); } - -static GLboolean search_cache( struct brw_context *brw, - struct brw_gs_prog_key *key ) -{ - return brw_search_cache(&brw->cache[BRW_GS_PROG], - key, sizeof(*key), - &brw->gs.prog_data, - &brw->gs.prog_gs_offset); -} - - static const GLenum gs_prim[GL_POLYGON+1] = { GL_POINTS, GL_LINES, @@ -187,8 +176,26 @@ static void upload_gs_prog( struct brw_context *brw ) } if (brw->gs.prog_active) { - if (!search_cache(brw, &key)) + struct brw_gs_prog_data *prog_data; + uint32_t offset; + + if (brw_search_cache(&brw->cache[BRW_GS_PROG], + &key, sizeof(key), + &prog_data, + &offset)) { + if (offset != brw->gs.prog_gs_offset || + !brw->gs.prog_data || + memcmp(prog_data, &brw->gs.prog_data, + sizeof(*brw->gs.prog_data)) != 0) + { + brw->gs.prog_gs_offset = offset; + brw->gs.prog_data = prog_data; + brw->state.dirty.cache |= CACHE_NEW_GS_PROG; + } + } else { compile_gs_prog( brw, &key ); + brw->state.dirty.cache |= CACHE_NEW_GS_PROG; + } } } |