(img1, img2, dx, dy, alpha)
| 3314 | return blend(OVERLAY, img1, img2, dx, dy, alpha); |
| 3315 | } |
| 3316 | function hardlight(img1, img2, dx, dy, alpha) { |
| 3317 | return blend(HARDLIGHT, img1, img2, dx, dy, alpha); |
| 3318 | } |
| 3319 | function hue(img1, img2, dx, dy, alpha) { |
| 3320 | return blend(HUE, img1, img2, dx, dy, alpha); |
| 3321 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…