summaryrefslogtreecommitdiff
path: root/src/c_fl_pixmap.cpp
blob: 18e6b5dd45cf7edf4c46992babf24c3ee8f396ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44


#include <FL/Fl_Pixmap.H>
#include "c_fl_pixmap.h"




void free_fl_pixmap(PIXMAP b) {
    delete reinterpret_cast<Fl_Pixmap*>(b);
}

PIXMAP fl_pixmap_copy(PIXMAP b, int w, int h) {
    return reinterpret_cast<Fl_Pixmap*>(b)->Fl_Pixmap::copy(w, h);
}

PIXMAP fl_pixmap_copy2(PIXMAP b) {
    return reinterpret_cast<Fl_Pixmap*>(b)->copy();
}




void fl_pixmap_color_average(PIXMAP p, int c, float b) {
    //  virtual so disable dispatch
    reinterpret_cast<Fl_Pixmap*>(p)->Fl_Pixmap::color_average(c, b);
}

void fl_pixmap_desaturate(PIXMAP p) {
    //  virtual so disable dispatch
    reinterpret_cast<Fl_Pixmap*>(p)->Fl_Pixmap::desaturate();
}




void fl_pixmap_draw2(PIXMAP b, int x, int y) {
    reinterpret_cast<Fl_Pixmap*>(b)->draw(x, y);
}

void fl_pixmap_draw(PIXMAP b, int x, int y, int w, int h, int cx, int cy) {
    reinterpret_cast<Fl_Pixmap*>(b)->Fl_Pixmap::draw(x, y, w, h, cx, cy);
}