| 184 | } |
| 185 | |
| 186 | void RotatingSkin::_setColour(const Colour& _value) |
| 187 | { |
| 188 | uint32 colour = texture_utility::toNativeColour(_value, mVertexFormat); |
| 189 | mCurrentColour = (colour & 0x00FFFFFF) | (mCurrentColour & 0xFF000000); |
| 190 | |
| 191 | if (nullptr != mNode) |
| 192 | mNode->outOfDate(mRenderItem); |
| 193 | } |
| 194 | |
| 195 | void RotatingSkin::setStateData(IStateInfo* _data) |
| 196 | { |
nothing calls this directly
no test coverage detected