aboutsummaryrefslogtreecommitdiff
path: root/util/bump_version.sh
Commit message (Expand)AuthorAge
* Add release information to appdata file (#7771)Carles Pastor Badosa2018-10-16
* Fix release scriptLoïc Blot2018-06-14
* Lua_api.txt: Remove MT version, fix spelling and clean upezhh2017-12-01
* New version scheme (#6292)Loïc Blot2017-08-20
* Fix bump_version.sh & client_lua_api.mdLoic Blot2017-06-06
* Upgrade Android build to Gradle build systemShadowNinja2016-04-28
* Make Git version detection use VERSION_STRING instead of tagsShadowNinja2015-05-05
* Add util/bump_version.shKahrl2014-12-30
er General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #pragma once #include "irrlichttypes_extrabloated.h" /* Manually insert an image into the cache, useful to avoid texture-to-image * conversion whenever we can intercept it. */ void guiScalingCache(io::path key, video::IVideoDriver *driver, video::IImage *value); // Manually clear the cache, e.g. when switching to different worlds. void guiScalingCacheClear(); /* Get a cached, high-quality pre-scaled texture for display purposes. If the * texture is not already cached, attempt to create it. Returns a pre-scaled texture, * or the original texture if unable to pre-scale it. */ video::ITexture *guiScalingResizeCached(video::IVideoDriver *driver, video::ITexture *src, const core::rect<s32> &srcrect, const core::rect<s32> &destrect); /* Convenience wrapper for guiScalingResizeCached that accepts parameters that * are available at GUI imagebutton creation time. */ video::ITexture *guiScalingImageButton(video::IVideoDriver *driver, video::ITexture *src, s32 width, s32 height); /* Replacement for driver->draw2DImage() that uses the high-quality pre-scaled * texture, if configured. */ void draw2DImageFilterScaled(video::IVideoDriver *driver, video::ITexture *txr, const core::rect<s32> &destrect, const core::rect<s32> &srcrect, const core::rect<s32> *cliprect = 0, const video::SColor *const colors = 0, bool usealpha = false);