~ubuntu-branches/ubuntu/trusty/blender/trusty-proposed

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/BKE_dynamicpaint.h

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2013-08-14 10:43:49 UTC
  • mfrom: (14.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20130814104349-t1d5mtwkphp12dyj
Tags: 2.68a-3
* Upload to unstable
* debian/: python3.3 Depends simplified
  - debian/control: python3.3 Depends dropped
    for blender-data package
  - 0001-blender_thumbnailer.patch refreshed
* debian/control: libavcodec b-dep versioning dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
struct bContext;
31
31
struct wmOperator;
 
32
struct Scene;
32
33
 
33
34
/* Actual surface point */
34
35
typedef struct PaintSurfaceData {
69
70
 
70
71
int dynamicPaint_createType(struct DynamicPaintModifierData *pmd, int type, struct Scene *scene);
71
72
struct DynamicPaintSurface *dynamicPaint_createNewSurface(struct DynamicPaintCanvasSettings *canvas, struct Scene *scene);
72
 
void dynamicPaint_clearSurface(struct DynamicPaintSurface *surface);
73
 
int  dynamicPaint_resetSurface(struct DynamicPaintSurface *surface);
 
73
void dynamicPaint_clearSurface(struct Scene *scene, struct DynamicPaintSurface *surface);
 
74
int  dynamicPaint_resetSurface(struct Scene *scene, struct DynamicPaintSurface *surface);
74
75
void dynamicPaint_freeSurface(struct DynamicPaintSurface *surface);
75
76
void dynamicPaint_freeCanvas(struct DynamicPaintModifierData *pmd);
76
77
void dynamicPaint_freeBrush(struct DynamicPaintModifierData *pmd);
85
86
struct DynamicPaintSurface *get_activeSurface(struct DynamicPaintCanvasSettings *canvas);
86
87
 
87
88
/* image sequence baking */
88
 
int dynamicPaint_createUVSurface(struct DynamicPaintSurface *surface);
 
89
int dynamicPaint_createUVSurface(struct Scene *scene, struct DynamicPaintSurface *surface);
89
90
int dynamicPaint_calculateFrame(struct DynamicPaintSurface *surface, struct Scene *scene, struct Object *cObject, int frame);
90
91
void dynamicPaint_outputSurfaceImage(struct DynamicPaintSurface *surface, char *filename, short output_layer);
91
92