Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Riakiotakis <kalast@gmail.com>2013-04-23 02:20:38 +0400
committerAntony Riakiotakis <kalast@gmail.com>2013-04-23 02:20:38 +0400
commite066b077fb8cae95576b6e4db3fc5bb07e4ab358 (patch)
tree791eba58bca1187186cc67c9b5d8ab7609787bc4 /source/blender/blenkernel/BKE_paint.h
parent15521ab0ff21368ffa19b75f926c806d5f8c2dad (diff)
Overlay fixes:
* Clobbering enum * Cursor overlay not dependent on mapping (again!) * Brush overlay not updating when size is tweaked
Diffstat (limited to 'source/blender/blenkernel/BKE_paint.h')
-rw-r--r--source/blender/blenkernel/BKE_paint.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/BKE_paint.h b/source/blender/blenkernel/BKE_paint.h
index 5b53f1d34c9..c6226180958 100644
--- a/source/blender/blenkernel/BKE_paint.h
+++ b/source/blender/blenkernel/BKE_paint.h
@@ -71,8 +71,8 @@ typedef enum PaintMode {
typedef enum OverlayControlFlags {
PAINT_INVALID_OVERLAY_TEXTURE_PRIMARY = 1,
PAINT_INVALID_OVERLAY_TEXTURE_SECONDARY = (1 << 2),
- PAINT_INVALID_OVERLAY_CURVE = (1 << 2),
- PAINT_OVERLAY_OVERRIDE = (1 << 3)
+ PAINT_INVALID_OVERLAY_CURVE = (1 << 3),
+ PAINT_OVERLAY_OVERRIDE = (1 << 4)
} OverlayControlFlags;
void BKE_paint_invalidate_overlay_tex(struct Scene *scene, const struct Tex *tex);