mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-02 15:20:26 +01:00
r300/compiler: Oops, this slipped through.
This commit is contained in:
parent
2e74bc440e
commit
a089fe2816
1 changed files with 4 additions and 2 deletions
|
|
@ -113,9 +113,11 @@ void r3xx_compile_fragment_program(struct r300_fragment_program_compiler* c)
|
|||
* Remember, lowering comes last! */
|
||||
struct radeon_program_transformation common_transformations[] = {
|
||||
{ &radeonTransformTEX, c },
|
||||
{ &radeonTransformALU, 0 }
|
||||
};
|
||||
radeonLocalTransform(&c->Base, 2, common_transformations);
|
||||
radeonLocalTransform(&c->Base, 1, common_transformations);
|
||||
|
||||
common_transformations[0].function = &radeonTransformALU;
|
||||
radeonLocalTransform(&c->Base, 1, common_transformations);
|
||||
|
||||
if (c->Base.Debug) {
|
||||
fprintf(stderr, "Fragment Program: After native rewrite:\n");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue