~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/editors/include/ED_sculpt.h

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-07-23 08:54:18 UTC
  • mfrom: (14.2.16 sid)
  • mto: (14.2.19 sid)
  • mto: This revision was merged to the branch mainline in revision 42.
  • Revision ID: package-import@ubuntu.com-20120723085418-9foz30v6afaf5ffs
Tags: 2.63a-2
* debian/: Cycles support added (Closes: #658075)
  For now, this top feature has been enabled only
  on [any-amd64 any-i386] architectures because
  of OpenImageIO failing on all others
* debian/: scripts installation path changed
  from /usr/lib to /usr/share:
  + debian/patches/: patchset re-worked for path changing
  + debian/control: "Breaks" field added on yafaray-exporter

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * $Id: ED_sculpt.h 27655 2010-03-22 09:30:00Z campbellbarton $
3
 
 *
 
1
/*
4
2
 * ***** BEGIN GPL LICENSE BLOCK *****
5
3
 *
6
4
 * This program is free software; you can redistribute it and/or
25
23
 * ***** END GPL LICENSE BLOCK *****
26
24
 */
27
25
 
28
 
#ifndef ED_SCULPT_H
29
 
#define ED_SCULPT_H
 
26
/** \file ED_sculpt.h
 
27
 *  \ingroup editors
 
28
 */
 
29
 
 
30
#ifndef __ED_SCULPT_H__
 
31
#define __ED_SCULPT_H__
30
32
 
31
33
struct ARegion;
32
34
struct bContext;
38
40
/* sculpt.c */
39
41
void ED_operatortypes_sculpt(void);
40
42
void sculpt_get_redraw_planes(float planes[4][4], struct ARegion *ar,
41
 
                                   struct RegionView3D *rv3d, struct Object *ob);
 
43
                              struct RegionView3D *rv3d, struct Object *ob);
42
44
void ED_sculpt_force_update(struct bContext *C);
43
45
 
44
46
/* paint_ops.c */
49
51
#define UNDO_PAINT_IMAGE        0
50
52
#define UNDO_PAINT_MESH         1
51
53
 
52
 
void ED_undo_paint_step(struct bContext *C, int type, int step);
 
54
int ED_undo_paint_step(struct bContext *C, int type, int step, const char *name);
53
55
void ED_undo_paint_free(void);
 
56
int ED_undo_paint_valid(int type, const char *name);
54
57
 
55
58
#endif