| 42 | } |
| 43 | |
| 44 | void text::updateColor(int r, int g, int b, int a){ |
| 45 | c.r = static_cast<float>(r) / 255.0f; |
| 46 | c.g = static_cast<float>(g) / 255.0f; |
| 47 | c.b = static_cast<float>(b) / 255.0f; |
| 48 | c.a = static_cast<float>(a) / 255.0f; |
| 49 | return; |
| 50 | } |
nothing calls this directly
no outgoing calls
no test coverage detected