Separate sf::Texture copy/move assignment operator

This commit is contained in:
Jan Haller 2020-07-05 16:02:12 +02:00
parent 81b8c138ba
commit 40ec0bf37d
2 changed files with 27 additions and 5 deletions

View file

@ -518,14 +518,25 @@ public:
bool generateMipmap();
////////////////////////////////////////////////////////////
/// \brief Combined copy/move assignment operator
/// \brief Copy assignment operator
///
/// \param right Instance to assign (copied or moved)
/// \param copied Instance to assign
///
/// \return Reference to self
///
////////////////////////////////////////////////////////////
Texture& operator =(Texture right);
Texture& operator =(const Texture& copied);
////////////////////////////////////////////////////////////
/// \brief Move assignment operator
///
/// \param moved instance to move from. Behaves like a
/// default-constructed object after the move.
///
/// \return Reference to self
///
////////////////////////////////////////////////////////////
Texture& operator =(Texture&& moved);
////////////////////////////////////////////////////////////
/// \brief Swap the contents of this texture with those of another

View file

@ -817,9 +817,20 @@ unsigned int Texture::getMaximumSize()
////////////////////////////////////////////////////////////
Texture& Texture::operator =(Texture right)
Texture& Texture::operator =(const Texture& copied)
{
swap(right);
Texture temp(copied);
swap(temp);
return *this;
}
////////////////////////////////////////////////////////////
Texture& Texture::operator =(Texture&& moved)
{
Texture temp(std::move(moved));
swap(temp);
return *this;
}