| 199 | } |
| 200 | |
| 201 | c32 c32::ModulateA( c32 colour ) const |
| 202 | { |
| 203 | u8 r = GetR(); |
| 204 | u8 g = GetG(); |
| 205 | u8 b = GetB(); |
| 206 | u8 a = ModulateComponent( GetA(), colour.GetA() ); |
| 207 | |
| 208 | return c32( r, g, b, a ); |
| 209 | } |
| 210 | |
| 211 | c32 c32::Interpolate( c32 colour, float factor ) const |
| 212 | { |
nothing calls this directly
no test coverage detected