Separate sf::Texture copy/move assignment operator
This commit is contained in:
parent
81b8c138ba
commit
40ec0bf37d
|
@ -518,14 +518,25 @@ public:
|
||||||
bool generateMipmap();
|
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
|
/// \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
|
/// \brief Swap the contents of this texture with those of another
|
||||||
|
|
|
@ -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;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue