diff options
author | Maciej Cencora <[email protected]> | 2010-03-21 11:19:02 +0100 |
---|---|---|
committer | Maciej Cencora <[email protected]> | 2010-03-24 20:07:37 +0100 |
commit | 70929f4505d5cb1b9848a02e8359e9f7a8ef598c (patch) | |
tree | 05e5d403496f30e00b185411077b84848839b2b1 | |
parent | 516334b7fff5e0167d3f3fbcd15de08b5ca89747 (diff) |
r300: clean fog_attr/wpos_attr if code accessing these attributes has been removed FP during compilation
-rw-r--r-- | src/mesa/drivers/dri/r300/r300_fragprog_common.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_fragprog_common.c b/src/mesa/drivers/dri/r300/r300_fragprog_common.c index 61ea5e4d9a3..0646da46249 100644 --- a/src/mesa/drivers/dri/r300/r300_fragprog_common.c +++ b/src/mesa/drivers/dri/r300/r300_fragprog_common.c @@ -256,6 +256,19 @@ static void translate_fragment_program(GLcontext *ctx, struct r300_fragment_prog fp->InputsRead = compiler.Base.Program.InputsRead; + /* Clear the fog/wpos_attr if code accessing these + * attributes has been removed during compilation + */ + if (fp->fog_attr != FRAG_ATTRIB_MAX) { + if (!(fp->InputsRead & (1 << fp->fog_attr))) + fp->fog_attr = FRAG_ATTRIB_MAX; + } + + if (fp->wpos_attr != FRAG_ATTRIB_MAX) { + if (!(fp->InputsRead & (1 << fp->wpos_attr))) + fp->wpos_attr = FRAG_ATTRIB_MAX; + } + rc_destroy(&compiler.Base); } |