Software Backend: Rename 'copy_region' to 'CopyRegion'

This commit is contained in:
iwubcode
2017-10-02 00:33:47 -05:00
parent 0f7f4ccaf9
commit 1a1c3560ce
3 changed files with 7 additions and 7 deletions

View File

@ -44,8 +44,8 @@ void SWTexture::CopyRectangleFromTexture(const AbstractTexture* source,
}
else
{
copy_region(reinterpret_cast<const Pixel*>(software_source_texture->GetData()), srcrect,
reinterpret_cast<Pixel*>(GetData()), dstrect);
CopyRegion(reinterpret_cast<const Pixel*>(software_source_texture->GetData()), srcrect,
reinterpret_cast<Pixel*>(GetData()), dstrect);
}
}