diff options
Diffstat (limited to 'src/FbTk/ImageControl.hh')
-rw-r--r-- | src/FbTk/ImageControl.hh | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/FbTk/ImageControl.hh b/src/FbTk/ImageControl.hh index a8e18b7..a9c2eb7 100644 --- a/src/FbTk/ImageControl.hh +++ b/src/FbTk/ImageControl.hh | |||
@@ -39,14 +39,10 @@ class Texture; | |||
39 | /// Holds screen info, color tables and caches textures | 39 | /// Holds screen info, color tables and caches textures |
40 | class ImageControl: private NotCopyable { | 40 | class ImageControl: private NotCopyable { |
41 | public: | 41 | public: |
42 | ImageControl(int screen_num, bool dither = false, int colors_per_channel = 4, | 42 | ImageControl(int screen_num, int colors_per_channel = 4, |
43 | unsigned long cache_timeout = 300000l, unsigned long cache_max = 200l); | 43 | unsigned long cache_timeout = 300000l, unsigned long cache_max = 200l); |
44 | virtual ~ImageControl(); | 44 | virtual ~ImageControl(); |
45 | 45 | ||
46 | bool doDither() const { return m_dither; } | ||
47 | #ifdef NOT_USED | ||
48 | int bitsPerPixel() const { return bits_per_pixel; } | ||
49 | #endif | ||
50 | int depth() const { return m_screen_depth; } | 46 | int depth() const { return m_screen_depth; } |
51 | int colorsPerChannel() const { return m_colors_per_channel; } | 47 | int colorsPerChannel() const { return m_colors_per_channel; } |
52 | int screenNumber() const { return m_screen_num; } | 48 | int screenNumber() const { return m_screen_num; } |
@@ -68,15 +64,8 @@ public: | |||
68 | void removeImage(Pixmap thepix); | 64 | void removeImage(Pixmap thepix); |
69 | void colorTables(const unsigned char **, const unsigned char **, const unsigned char **, | 65 | void colorTables(const unsigned char **, const unsigned char **, const unsigned char **, |
70 | int *, int *, int *, int *, int *, int *) const; | 66 | int *, int *, int *, int *, int *, int *) const; |
71 | #ifdef NOT_USED | ||
72 | void getXColorTable(XColor **, int *); | ||
73 | #endif | ||
74 | void getGradientBuffers(unsigned int, unsigned int, | 67 | void getGradientBuffers(unsigned int, unsigned int, |
75 | unsigned int **, unsigned int **); | 68 | unsigned int **, unsigned int **); |
76 | void setDither(bool d) { m_dither = d; } | ||
77 | #ifdef NOT_USED | ||
78 | void setColorsPerChannel(int cpc); | ||
79 | #endif | ||
80 | 69 | ||
81 | void cleanCache(); | 70 | void cleanCache(); |
82 | private: | 71 | private: |