summaryrefslogtreecommitdiff
path: root/src/guiscalingfilter.h
diff options
context:
space:
mode:
authorQuentin Bazin <quent42340@gmail.com>2018-11-28 20:01:49 +0100
committerSmallJoker <SmallJoker@users.noreply.github.com>2018-11-28 20:01:49 +0100
commit5f1cd555cd9d1c64426e173b30b5b792d211c835 (patch)
tree2c8508467d3bf28d549cce2d25144fa8ef42beae /src/guiscalingfilter.h
parentddd9317b733857630499972179caebc236b4d991 (diff)
downloadminetest-5f1cd555cd9d1c64426e173b30b5b792d211c835.tar.gz
minetest-5f1cd555cd9d1c64426e173b30b5b792d211c835.tar.bz2
minetest-5f1cd555cd9d1c64426e173b30b5b792d211c835.zip
Move client-specific files to 'src/client' (#7902)
Update Android.mk Remove 'src/client' from include_directories
Diffstat (limited to 'src/guiscalingfilter.h')
-rw-r--r--src/guiscalingfilter.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/guiscalingfilter.h b/src/guiscalingfilter.h
deleted file mode 100644
index 4661bf8da..000000000
--- a/src/guiscalingfilter.h
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
-Copyright (C) 2015 Aaron Suen <warr1024@gmail.com>
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU Lesser General Public License as published by
-the Free Software Foundation; either version 2.1 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser 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);