aboutsummaryrefslogtreecommitdiff
path: root/graphics/scaler/aspect.h
diff options
context:
space:
mode:
authorCameron Cawley2019-12-16 19:21:22 +0000
committerFilippos Karapetis2019-12-17 01:18:11 +0200
commitde096f56a524ce32b598c6b5902252c62ddc8f9b (patch)
tree31fe865e3ba60ba9e7f5f0ddace4206bf75c7691 /graphics/scaler/aspect.h
parent7d13c60a8bb7a1d71d2eb86b6530749a791d4792 (diff)
downloadscummvm-rg350-de096f56a524ce32b598c6b5902252c62ddc8f9b.tar.gz
scummvm-rg350-de096f56a524ce32b598c6b5902252c62ddc8f9b.tar.bz2
scummvm-rg350-de096f56a524ce32b598c6b5902252c62ddc8f9b.zip
GRAPHICS: Remove unused scaler code
Diffstat (limited to 'graphics/scaler/aspect.h')
-rw-r--r--graphics/scaler/aspect.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/graphics/scaler/aspect.h b/graphics/scaler/aspect.h
index bb082ebba0..93201c3d40 100644
--- a/graphics/scaler/aspect.h
+++ b/graphics/scaler/aspect.h
@@ -58,19 +58,4 @@ int stretch200To240(uint8 *buf,
int origSrcY,
bool interpolate);
-
-/**
- * This filter (up)scales the source image vertically by a factor of 6/5.
- * For example, a 320x200 image is scaled to 320x240.
- *
- * The main difference to the code in graphics/scaler/aspect.cpp is the
- * out-of-place operation, omitting a straight blit step the sdl backend
- * does. Also, tests show unaligned access errors with the stock aspect scaler.
- */
-DECLARE_SCALER(Normal1xAspect);
-
-#ifdef USE_ARM_SCALER_ASM
-DECLARE_SCALER(Normal2xAspect);
-#endif
-
#endif