| 777 | } |
| 778 | |
| 779 | void colortmu(int n, float r, float g, float b, float a) |
| 780 | { |
| 781 | tmu f = tmus[n]; |
| 782 | f.color[0] = r; |
| 783 | f.color[1] = g; |
| 784 | f.color[2] = b; |
| 785 | f.color[3] = a; |
| 786 | committmu(n, f); |
| 787 | } |
| 788 | |
| 789 | void setuptmu(int n, const char *rgbfunc, const char *alphafunc) |
| 790 | { |
no test coverage detected