@@ -36,7 +36,6 @@ struct Screen : public Shape {
3636 virtual void drawLine (int x1, int y1, int x2, int y2) = 0;
3737 virtual void drawRect (int x1, int y1, int x2, int y2) = 0;
3838 virtual void drawRectFilled (int x1, int y1, int x2, int y2) = 0;
39- virtual int getPixel (int x, int y) = 0;
4039 virtual void newLine (int lineHeight) = 0;
4140 virtual int print (const char *p, int lineHeight, bool allChars=false );
4241 virtual bool setGraphicsRendition (const char c, int escValue, int lineHeight) = 0;
@@ -111,7 +110,6 @@ struct GraphicScreen : public Screen {
111110 void resize (int newWidth, int newHeight, int oldWidth,
112111 int oldHeight, int lineHeight);
113112 void updateFont (int size);
114- int getPixel (int x, int y);
115113 int getMaxHScroll () { return 0 ; }
116114
117115 MAHandle _image;
@@ -319,7 +317,6 @@ struct TextScreen : public Screen {
319317 void drawLine (int x1, int y1, int x2, int y2);
320318 void drawRect (int x1, int y1, int x2, int y2);
321319 void drawRectFilled (int x1, int y1, int x2, int y2);
322- int getPixel (int x, int y) { return 0 ; }
323320 void inset (int x, int y, int w, int h, Screen *over);
324321 void newLine (int lineHeight);
325322 int print (const char *p, int lineHeight, bool allChars=false );
0 commit comments