| 845 | } |
| 846 | |
| 847 | void CGraphics_Threaded::SetColor4(ColorRGBA TopLeft, ColorRGBA TopRight, ColorRGBA BottomLeft, ColorRGBA BottomRight) |
| 848 | { |
| 849 | CColorVertex aArray[] = { |
| 850 | CColorVertex(0, TopLeft), |
| 851 | CColorVertex(1, TopRight), |
| 852 | CColorVertex(2, BottomRight), |
| 853 | CColorVertex(3, BottomLeft)}; |
| 854 | SetColorVertex(aArray, std::size(aArray)); |
| 855 | } |
| 856 | |
| 857 | void CGraphics_Threaded::ChangeColorOfCurrentQuadVertices(float r, float g, float b, float a) |
| 858 | { |
no test coverage detected