compiler.program = _mesa_clone_program(ctx, &fp->Base);
if (RADEON_DEBUG & DEBUG_PIXEL) {
+ fflush(stdout);
_mesa_printf("Fragment Program: Initial program:\n");
_mesa_print_program(compiler.program);
+ fflush(stdout);
}
insert_WPOS_trailer(&compiler);
if (RADEON_DEBUG & DEBUG_PIXEL) {
_mesa_printf("Fragment Program: After native rewrite:\n");
_mesa_print_program(compiler.program);
+ fflush(stdout);
}
if (r300->radeon.radeonScreen->chip_family >= CHIP_FAMILY_RV515) {
if (RADEON_DEBUG & DEBUG_PIXEL) {
_mesa_printf("Compiler: after NqSSA-DCE:\n");
_mesa_print_program(compiler.program);
+ fflush(stdout);
}
if (!r300->vtbl.FragmentProgramEmit(&compiler))