summaryrefslogtreecommitdiff
path: root/FL/fl_draw.H
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2010-03-25 13:59:00 +0000
committerManolo Gouy <Manolo>2010-03-25 13:59:00 +0000
commitd748d323b993c5560443aca2a13b2e0ded3a8c6d (patch)
tree6fca476530786075e5fcc9bd5f24c1a83d1255e5 /FL/fl_draw.H
parent309e47801322afea091619f9d5ac45fea04158ab (diff)
Reorganized code to allow compilation with Fl_Device, Fl_Display but without Fl_Abstract_Printer
(may be useful for embarked devices) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7330 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/fl_draw.H')
-rw-r--r--FL/fl_draw.H11
1 files changed, 0 insertions, 11 deletions
diff --git a/FL/fl_draw.H b/FL/fl_draw.H
index d5b0e2c0c..7c4168404 100644
--- a/FL/fl_draw.H
+++ b/FL/fl_draw.H
@@ -42,8 +42,6 @@ class Fl_Image;
// Label flags...
FL_EXPORT extern char fl_draw_shortcut;
-/** \brief The device that currently receives all graphics requests */
-FL_EXPORT extern Fl_Device *fl_device;
/** \addtogroup fl_attributes
@{
@@ -578,15 +576,6 @@ FL_EXPORT void fl_frame2(const char* s, int x, int y, int w, int h);
FL_EXPORT void fl_draw_box(Fl_Boxtype, int x, int y, int w, int h, Fl_Color);
// images:
-/**
- signature of image generation callback function.
- \param[in] data user data passed to function
- \param[in] x,y,w position and width of scan line in image
- \param[out] buf buffer for generated image data. You must copy \p w
- pixels from scanline \p y, starting at pixel \p x
- to this buffer.
- */
-typedef void (*Fl_Draw_Image_Cb)(void* data,int x,int y,int w,uchar* buf);
/**
Draw an 8-bit per color RGB or luminance image.