-------------------------------------------------------------------------------------- Sets the border color for a sprite --------------------------------------------------------------------------------------
| 440 | // Sets the border color for a sprite |
| 441 | //-------------------------------------------------------------------------------------- |
| 442 | void Sprite::SetBorderColor( DirectX::XMVECTOR Color ) |
| 443 | { |
| 444 | s_CBSprite.fBorderColor[0] = DirectX::XMVectorGetX( Color ); |
| 445 | s_CBSprite.fBorderColor[1] = DirectX::XMVectorGetY( Color ); |
| 446 | s_CBSprite.fBorderColor[2] = DirectX::XMVectorGetZ( Color ); |
| 447 | s_CBSprite.fBorderColor[3] = DirectX::XMVectorGetW( Color ); |
| 448 | } |
| 449 | |
| 450 | |
| 451 | //-------------------------------------------------------------------------------------- |
no outgoing calls
no test coverage detected