diff options
author | Marek Olšák <maraeo@gmail.com> | 2011-01-23 12:03:59 +0100 |
---|---|---|
committer | Marek Olšák <maraeo@gmail.com> | 2011-01-23 13:32:56 +0100 |
commit | ffcdd49c69811b9f768c0b32acef6527d5626a6e (patch) | |
tree | 5e888089d76d6a3452822163085490f3a5dbb33e /src/mesa/drivers/dri/r300/compiler/radeon_optimize.c | |
parent | 835c4ea1053730c8eea98337c9da1b14fcff6b5e (diff) |
r300/compiler: remove any code related to relative addressing of temporaries
The hw can't do it and the code was useless anyway (it's lowered
in the GLSL compiler).
Diffstat (limited to 'src/mesa/drivers/dri/r300/compiler/radeon_optimize.c')
-rw-r--r-- | src/mesa/drivers/dri/r300/compiler/radeon_optimize.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r300/compiler/radeon_optimize.c b/src/mesa/drivers/dri/r300/compiler/radeon_optimize.c index 44f4c0fbdc..5caff91b00 100644 --- a/src/mesa/drivers/dri/r300/compiler/radeon_optimize.c +++ b/src/mesa/drivers/dri/r300/compiler/radeon_optimize.c @@ -139,7 +139,6 @@ static void copy_propagate(struct radeon_compiler * c, struct rc_instruction * i unsigned int i; if (inst_mov->U.I.DstReg.File != RC_FILE_TEMPORARY || - inst_mov->U.I.DstReg.RelAddr || inst_mov->U.I.WriteALUResult || inst_mov->U.I.SaturateMode) return; |