Android Image driver was incomplete and did not compile.
This commit is contained in:
parent
0a124ac7e1
commit
bd77a6e976
@ -40,6 +40,8 @@
|
|||||||
#include <android/log.h>
|
#include <android/log.h>
|
||||||
|
|
||||||
|
|
||||||
|
void fl_set_status(int x, int y, int w, int h) {}
|
||||||
|
|
||||||
static const char *LOG_TAG = "FLTK";
|
static const char *LOG_TAG = "FLTK";
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -39,12 +39,12 @@ public:
|
|||||||
: Fl_Image_Surface_Driver(w, h, high_res, off) {}
|
: Fl_Image_Surface_Driver(w, h, high_res, off) {}
|
||||||
#if 0
|
#if 0
|
||||||
~Fl_GDI_Image_Surface_Driver();
|
~Fl_GDI_Image_Surface_Driver();
|
||||||
void set_current();
|
|
||||||
void translate(int x, int y);
|
|
||||||
void untranslate();
|
|
||||||
Fl_RGB_Image *image();
|
|
||||||
POINT origin;
|
POINT origin;
|
||||||
#endif
|
#endif
|
||||||
|
void set_current() override { } // TODO: write me
|
||||||
|
void translate(int x, int y) override { } // TODO: write me
|
||||||
|
void untranslate() override { } // TODO: write me
|
||||||
|
Fl_RGB_Image *image() override { return nullptr; } // TODO: write me
|
||||||
};
|
};
|
||||||
|
|
||||||
Fl_Image_Surface_Driver *Fl_Image_Surface_Driver::newImageSurfaceDriver(int w, int h, int high_res, Fl_Offscreen off)
|
Fl_Image_Surface_Driver *Fl_Image_Surface_Driver::newImageSurfaceDriver(int w, int h, int high_res, Fl_Offscreen off)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user