aboutsummaryrefslogtreecommitdiff
path: root/graphics/scaler/hq3x.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/scaler/hq3x.cpp')
-rw-r--r--graphics/scaler/hq3x.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/graphics/scaler/hq3x.cpp b/graphics/scaler/hq3x.cpp
index 497fe69be1..0c33c23ab2 100644
--- a/graphics/scaler/hq3x.cpp
+++ b/graphics/scaler/hq3x.cpp
@@ -21,7 +21,7 @@
*
*/
-#include "common/scaler/intern.h"
+#include "graphics/scaler/intern.h"
#ifdef USE_NASM
// Assembly version of HQ3x
@@ -129,13 +129,13 @@ static bool isAltiVecAvailable() {
#define bitFormat 565
void HQ3x_565(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 dstPitch, int width, int height) {
- #include "common/scaler/hq3x.h"
+ #include "graphics/scaler/hq3x.h"
}
#undef bitFormat
#define bitFormat 555
void HQ3x_555(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 dstPitch, int width, int height) {
- #include "common/scaler/hq3x.h"
+ #include "graphics/scaler/hq3x.h"
}
#undef bitFormat
@@ -145,13 +145,13 @@ void HQ3x_555(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 dstPit
#define bitFormat 565
void HQ3x_565_Altivec(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 dstPitch, int width, int height) {
- #include "common/scaler/hq3x.h"
+ #include "graphics/scaler/hq3x.h"
}
#undef bitFormat
#define bitFormat 555
void HQ3x_555_Altivec(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uint32 dstPitch, int width, int height) {
- #include "common/scaler/hq3x.h"
+ #include "graphics/scaler/hq3x.h"
}
#undef bitFormat
#endif