Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_paint.h
| Show First 20 Lines • Show All 113 Lines • ▼ Show 20 Lines | |||||
| */ | */ | ||||
| #define PAINT_SYMM_AREA_DEFAULT 0 | #define PAINT_SYMM_AREA_DEFAULT 0 | ||||
| typedef enum ePaintSymmetryAreas { | typedef enum ePaintSymmetryAreas { | ||||
| PAINT_SYMM_AREA_X = (1 << 0), | PAINT_SYMM_AREA_X = (1 << 0), | ||||
| PAINT_SYMM_AREA_Y = (1 << 1), | PAINT_SYMM_AREA_Y = (1 << 1), | ||||
| PAINT_SYMM_AREA_Z = (1 << 2), | PAINT_SYMM_AREA_Z = (1 << 2), | ||||
| } ePaintSymmetryAreas; | } ePaintSymmetryAreas; | ||||
| ENUM_OPERATORS(ePaintSymmetryAreas, PAINT_SYMM_AREA_Z); | |||||
| #define PAINT_SYMM_AREAS 8 | #define PAINT_SYMM_AREAS 8 | ||||
| void BKE_paint_invalidate_overlay_tex(struct Scene *scene, | void BKE_paint_invalidate_overlay_tex(struct Scene *scene, | ||||
| struct ViewLayer *view_layer, | struct ViewLayer *view_layer, | ||||
| const struct Tex *tex); | const struct Tex *tex); | ||||
| void BKE_paint_invalidate_cursor_overlay(struct Scene *scene, | void BKE_paint_invalidate_cursor_overlay(struct Scene *scene, | ||||
| struct ViewLayer *view_layer, | struct ViewLayer *view_layer, | ||||
| ▲ Show 20 Lines • Show All 801 Lines • Show Last 20 Lines | |||||