Sets the alpha value
| 2629 | |
| 2630 | // Sets the alpha value |
| 2631 | void d3d_SetAlphaValue(uint8_t val) { |
| 2632 | D3D_state.cur_alpha = val; |
| 2633 | d3d_SetAlphaMultiplier(); |
| 2634 | } |
| 2635 | |
| 2636 | // Sets the overall alpha scale factor (all alpha values are scaled by this value) |
| 2637 | // usefull for motion blur effect |
no test coverage detected