-
Notifications
You must be signed in to change notification settings - Fork 86
/
mypaint-tiled-surface.h
81 lines (65 loc) · 2.73 KB
/
mypaint-tiled-surface.h
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#ifndef MYPAINTTILEDSURFACE_H
#define MYPAINTTILEDSURFACE_H
#include <stdint.h>
#include "mypaint-surface.h"
#include "mypaint-symmetry.h"
#include "mypaint-config.h"
#define NUM_BBOXES_DEFAULT 32
G_BEGIN_DECLS
typedef struct MyPaintTiledSurface MyPaintTiledSurface;
typedef struct {
int tx;
int ty;
gboolean readonly;
guint16 *buffer;
gpointer context; /* Only to be used by the surface implementations. */
int thread_id;
int mipmap_level;
} MyPaintTileRequest;
void
mypaint_tile_request_init(MyPaintTileRequest *data, int level,
int tx, int ty, gboolean readonly);
typedef void (*MyPaintTileRequestStartFunction) (MyPaintTiledSurface *self, MyPaintTileRequest *request);
typedef void (*MyPaintTileRequestEndFunction) (MyPaintTiledSurface *self, MyPaintTileRequest *request);
typedef void (*MyPaintTiledSurfaceAreaChanged) (MyPaintTiledSurface *self, int bb_x, int bb_y, int bb_w, int bb_h);
/**
* MyPaintTiledSurface:
*
* Interface and convenience class for implementing a #MyPaintSurface backed by a tile store.
*
* The size of the surface is infinite, and consumers need just implement two vfuncs.
*/
struct MyPaintTiledSurface {
MyPaintSurface parent;
/* private: */
MyPaintTileRequestStartFunction tile_request_start;
MyPaintTileRequestEndFunction tile_request_end;
MyPaintSymmetryData symmetry_data;
struct OperationQueue *operation_queue;
int num_bboxes;
int num_bboxes_dirtied;
MyPaintRectangle *bboxes;
MyPaintRectangle default_bboxes[NUM_BBOXES_DEFAULT];
gboolean threadsafe_tile_requests;
int tile_size;
};
void
mypaint_tiled_surface_init(MyPaintTiledSurface *self,
MyPaintTileRequestStartFunction tile_request_start,
MyPaintTileRequestEndFunction tile_request_end);
void
mypaint_tiled_surface_destroy(MyPaintTiledSurface *self);
void
mypaint_tiled_surface_set_symmetry_state(MyPaintTiledSurface *self, gboolean active,
float center_x, float center_y,
float symmetry_angle,
MyPaintSymmetryType symmetry_type,
int rot_symmetry_lines);
float
mypaint_tiled_surface_get_alpha (MyPaintTiledSurface *self, float x, float y, float radius);
void mypaint_tiled_surface_tile_request_start(MyPaintTiledSurface *self, MyPaintTileRequest *request);
void mypaint_tiled_surface_tile_request_end(MyPaintTiledSurface *self, MyPaintTileRequest *request);
void mypaint_tiled_surface_begin_atomic(MyPaintTiledSurface *self);
void mypaint_tiled_surface_end_atomic(MyPaintTiledSurface *self, MyPaintRectangles *roi);
G_END_DECLS
#endif // MYPAINTTILEDSURFACE_H