remove SOE deprecated code and files - leaving in the #if 0 blocks with TODO and other possible uses for later

This commit is contained in:
DarthArgus
2016-03-24 21:07:31 +00:00
parent f275628817
commit 3b430656ba
58 changed files with 7 additions and 2481 deletions
@@ -367,13 +367,6 @@ void ImageManipulation::install(const InstallData &installData)
//-- make sure we've got valid function pointers for all
NOT_NULL(ms_nextMipmapFunction);
#if 0
NOT_NULL(ms_convertFormatFunction);
NOT_NULL(ms_copyIgnoreAlphaFunction);
NOT_NULL(ms_copyRespectAlphaFunction);
NOT_NULL(ms_blendFunction);
NOT_NULL(ms_blendTwoFunction);
#endif
}
// ----------------------------------------------------------------------
@@ -55,20 +55,7 @@ public:
static void install(const InstallData &installData);
static void generateNextSmallerMipmap(const Image &sourceImage, Image &destImage);
#if 0
static void convertFormatSameSize(const Image &sourceImage, Image &destImage);
// these functions require same pixel format. they do not stretch or compress pixels.
static void copyIgnoreAlpha(const Image &sourceImage, int sourceX, int sourceY, int width, int height, Image &destImage, int destX, int destY);
static void copyRespectAlpha(const Image &sourceImage, int sourceX, int sourceY, int width, int height, Image &destImage, int destX, int destY);
// these two always respect alpha
static void blend(float sourceBlendFactor, const Image &sourceImage, int sourceX, int sourceY, int width, int height, Image &destImage, int destX, int destY);
static void blendTwo(float firstSourceBlendFactor, float resultToDestBlendFactor, const Image &sourceImage1, const Image &sourceImage2, int sourceX, int sourceY, int width, int height, Image &destImage, int destX, int destY);
#endif
static void generateNextSmallerMipmap(const Image &sourceImage, Image &destImage);
private:
static void remove();