From 5f1cd555cd9d1c64426e173b30b5b792d211c835 Mon Sep 17 00:00:00 2001 From: Quentin Bazin Date: Wed, 28 Nov 2018 20:01:49 +0100 Subject: Move client-specific files to 'src/client' (#7902) Update Android.mk Remove 'src/client' from include_directories --- src/guiscalingfilter.h | 50 -------------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 src/guiscalingfilter.h (limited to 'src/guiscalingfilter.h') 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 - -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 &srcrect, const core::rect &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 &destrect, const core::rect &srcrect, - const core::rect *cliprect = 0, const video::SColor *const colors = 0, - bool usealpha = false); -- cgit v1.2.3