1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-06 17:41:04 +00:00

Deleted unused parts of blitter

This commit is contained in:
sfan5 2025-07-07 18:18:03 +02:00
parent 158bfa6442
commit e8e5ef0369
6 changed files with 0 additions and 541 deletions

View file

@ -53,11 +53,6 @@ public:
//! copies this surface into another
void copyTo(IImage *target, const core::position2d<s32> &pos, const core::rect<s32> &sourceRect, const core::rect<s32> *clipRect = 0) override;
//! copies this surface into another, using the alpha mask, an cliprect and a color to add with
virtual void copyToWithAlpha(IImage *target, const core::position2d<s32> &pos,
const core::rect<s32> &sourceRect, const SColor &color,
const core::rect<s32> *clipRect = 0, bool combineAlpha = false) override;
//! copies this surface into another, scaling it to fit, applying a box filter
void copyToScalingBoxFilter(IImage *target, s32 bias = 0, bool blend = false) override;