| 112 | float multiply(float &x, float &y) { return fl::multiply(x, y); } |
| 113 | float add(float &x, float &y) { return fl::add(x, y); } |
| 114 | float screen(float &x, float &y) { return fl::screen(x, y); } |
| 115 | float colordodge(float &x, float &y) { return fl::colordodge(x, y); } |
| 116 | float colorburn(float &x, float &y) { return fl::colorburn(x, y); } |
| 117 |