summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r300/compiler/r3xx_fragprog.c
diff options
context:
space:
mode:
authorCorbin Simpson <MostAwesomeDude@gmail.com>2010-04-15 22:48:18 -0700
committerCorbin Simpson <MostAwesomeDude@gmail.com>2010-04-16 00:43:17 -0700
commitf8a14186809356871ae74159c774e9e3959a22e5 (patch)
treef762704d79dcb32d283b4373681dc7be70815163 /src/mesa/drivers/dri/r300/compiler/r3xx_fragprog.c
parent8c456775887e192dd7464b94295f4410045c7c07 (diff)
r300/compiler: Split off texture fixes to their own file.
Yes, I'm fully aware this generates subpar code on r500.
Diffstat (limited to 'src/mesa/drivers/dri/r300/compiler/r3xx_fragprog.c')
-rw-r--r--src/mesa/drivers/dri/r300/compiler/r3xx_fragprog.c19
1 files changed, 8 insertions, 11 deletions
diff --git a/src/mesa/drivers/dri/r300/compiler/r3xx_fragprog.c b/src/mesa/drivers/dri/r300/compiler/r3xx_fragprog.c
index a5814875bd..1e126d546d 100644
--- a/src/mesa/drivers/dri/r300/compiler/r3xx_fragprog.c
+++ b/src/mesa/drivers/dri/r300/compiler/r3xx_fragprog.c
@@ -26,6 +26,7 @@
#include "radeon_dataflow.h"
#include "radeon_program_alu.h"
+#include "radeon_program_tex.h"
#include "r300_fragprog.h"
#include "r300_fragprog_swizzle.h"
#include "r500_fragprog.h"
@@ -90,35 +91,31 @@ void r3xx_compile_fragment_program(struct r300_fragment_program_compiler* c)
if (c->is_r500) {
struct radeon_program_transformation transformations[] = {
- { &r500_transform_TEX, c },
{ &r500_transform_IF, 0 },
{ &radeonTransformALU, 0 },
{ &radeonTransformDeriv, 0 },
{ &radeonTransformTrigScale, 0 }
};
- radeonLocalTransform(&c->Base, 5, transformations);
+ radeonLocalTransform(&c->Base, 4, transformations);
c->Base.SwizzleCaps = &r500_swizzle_caps;
} else {
struct radeon_program_transformation transformations[] = {
- { &r300_transform_TEX, c },
{ &radeonTransformALU, 0 },
{ &radeonTransformTrigSimple, 0 }
};
- radeonLocalTransform(&c->Base, 3, transformations);
+ radeonLocalTransform(&c->Base, 2, transformations);
c->Base.SwizzleCaps = &r300_swizzle_caps;
}
- /* As a stopgap, run the ALU lowering sequence once again.
- *
- * The entire lowering sequence should be fixed so that these little
- * inter-dependent instructions aren't an issue. I suppose we'd need a
- * list of safe instructions first... */
- struct radeon_program_transformation maths_lowering[] = {
+ /* Run the common transformations too.
+ * Remember, lowering comes last! */
+ struct radeon_program_transformation common_transformations[] = {
+ { &radeonTransformTEX, c },
{ &radeonTransformALU, 0 }
};
- radeonLocalTransform(&c->Base, 1, maths_lowering);
+ radeonLocalTransform(&c->Base, 2, common_transformations);
if (c->Base.Debug) {
fprintf(stderr, "Fragment Program: After native rewrite:\n");