diff options
author | mrwastl <mrwastl@users.sourceforge.net> | 2011-10-29 22:49:47 +0200 |
---|---|---|
committer | mrwastl <mrwastl@users.sourceforge.net> | 2011-10-29 22:49:47 +0200 |
commit | c2d7a375563b93ee7dac34b22ca78c09ca928f02 (patch) | |
tree | 020389e2693783b28a137015e28d3cf6577a55df /glcdgraphics | |
parent | b560da0e0e08d791bbc404da19c394657af816ac (diff) | |
download | graphlcd-base-c2d7a375563b93ee7dac34b22ca78c09ca928f02.tar.gz graphlcd-base-c2d7a375563b93ee7dac34b22ca78c09ca928f02.tar.bz2 |
added additional parameter 'evaluate' for <variable/>; variables can now be evaluate: 'always': eval at every access, 'tick': eval. once per display update, 'switch': once per channel or menu update, 'once': eval. only once, interval: eval only after a certain amount of time. default = 'tick'; removed method ImageFile::SupportsScaling() (no longer required)
Diffstat (limited to 'glcdgraphics')
-rw-r--r-- | glcdgraphics/imagefile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glcdgraphics/imagefile.h b/glcdgraphics/imagefile.h index 2cc1eba..959d31e 100644 --- a/glcdgraphics/imagefile.h +++ b/glcdgraphics/imagefile.h @@ -31,7 +31,7 @@ public: virtual bool Load(cImage & image, const std::string & fileName); virtual bool Save(cImage & image, const std::string & fileName); - virtual bool SupportsScaling(void) { return true; } + //virtual bool SupportsScaling(void) { return true; } virtual bool LoadScaled(cImage & image, const std::string & fileName, uint16_t & scalew, uint16_t & scaleh); }; |