(Program program)
| 4669 | } |
| 4670 | |
| 4671 | private static boolean checkBufferFlip(Program program) |
| 4672 | { |
| 4673 | boolean flag = false; |
| 4674 | Boolean[] aboolean = program.getBuffersFlip(); |
| 4675 | |
| 4676 | for (int i = 0; i < usedColorBuffers; ++i) |
| 4677 | { |
| 4678 | if (Config.isTrue(aboolean[i])) |
| 4679 | { |
| 4680 | dfbColorTexturesFlip.flip(i); |
| 4681 | flag = true; |
| 4682 | } |
| 4683 | } |
| 4684 | |
| 4685 | return flag; |
| 4686 | } |
| 4687 | |
| 4688 | private static void renderComposites(Program[] ps, boolean renderFinal) |
| 4689 | { |
no test coverage detected