rename IPF functions

This commit is contained in:
Chris Beck 2014-11-03 18:20:55 -05:00
parent 8dd10eb418
commit da9ea37266
2 changed files with 6 additions and 6 deletions

View file

@ -385,11 +385,11 @@ Version 1.13.0-dev:
and adds a new dep (locale, filesystem was also added above)
* New image scaling routine imported from the xBRZ project (HqMAME on sourceforge)
* Now may save screenshots and other images as pngs, using SDL_SavePNG lib (from github)
* Image path function ~xBRZ added, taking one argument, the scaling factor. A number 1-5.
* Image path function ~XBRZ added, taking one argument, the scaling factor. A number 1-5.
* Image path function ~SCALE_SHARP added, analogous to ~SCALE but using nearest neighbor algo.
* Image path function ~Alpha added. Takes no arguments, plots the alpha channel in greyscale.
* Image path function ~PlOT_ALPHA added. Takes no arguments, plots the alpha channel in greyscale.
Mainly useful for diagnostics of other ipf combinations, or debugging the engine itself.
* Image path function ~Wipe_Alpha added. Again mainly useful for diagnostics.
* Image path function ~WIPE_ALPHA added. Again mainly useful for diagnostics.
Version 1.11.11:
* Add-ons server:

View file

@ -740,13 +740,13 @@ REGISTER_MOD_PARSER(GS, )
}
// Plot Alpha
REGISTER_MOD_PARSER(Alpha, )
REGISTER_MOD_PARSER(PLOT_ALPHA, )
{
return new plot_alpha_modification;
}
// Wipe Alpha
REGISTER_MOD_PARSER(Wipe_Alpha, )
REGISTER_MOD_PARSER(WIPE_ALPHA, )
{
return new wipe_alpha_modification;
}
@ -966,7 +966,7 @@ REGISTER_MOD_PARSER(SCALE_SHARP, args)
// xBRZ
REGISTER_MOD_PARSER(xBRZ, args)
REGISTER_MOD_PARSER(XBRZ, args)
{
int z = lexical_cast_default<int, const std::string &>(args);
if (z < 1 || z > 5) {