aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/celobj32.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/graphics/celobj32.h')
-rw-r--r--engines/sci/graphics/celobj32.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/engines/sci/graphics/celobj32.h b/engines/sci/graphics/celobj32.h
index 8bda86ec7e..2e1b4250df 100644
--- a/engines/sci/graphics/celobj32.h
+++ b/engines/sci/graphics/celobj32.h
@@ -205,9 +205,6 @@ class ScreenItem;
* pixel buffer.
*/
class CelObj {
-private:
- static CelScaler *_scaler;
-
protected:
/**
* When true, this cel will be horizontally mirrored
@@ -219,6 +216,8 @@ protected:
bool _drawMirrored;
public:
+ static CelScaler *_scaler;
+
/**
* The basic identifying information for this cel. This
* information effectively acts as a composite key for
@@ -380,6 +379,12 @@ public:
#pragma mark -
#pragma mark CelObj - Drawing
private:
+ template <typename MAPPER, typename SCALER>
+ void render(Buffer &target, const Common::Rect &targetRect, const Common::Point &scaledPosition) const;
+
+ template <typename MAPPER, typename SCALER>
+ void render(Buffer &target, const Common::Rect &targetRect, const Common::Point &scaledPosition, const Ratio &scaleX, const Ratio &scaleY) const;
+
void drawHzFlip(Buffer &target, const Common::Rect &targetRect, const Common::Point &scaledPosition) const;
void drawNoFlip(Buffer &target, const Common::Rect &targetRect, const Common::Point &scaledPosition) const;
void drawUncompNoFlip(Buffer &target, const Common::Rect &targetRect, const Common::Point &scaledPosition) const;