Changeset View
Changeset View
Standalone View
Standalone View
source/blender/windowmanager/WM_types.h
| Show First 20 Lines • Show All 364 Lines • ▼ Show 20 Lines | |||||
| #define ND_CONSTRAINT (26 << 16) | #define ND_CONSTRAINT (26 << 16) | ||||
| #define ND_PARTICLE (27 << 16) | #define ND_PARTICLE (27 << 16) | ||||
| #define ND_POINTCACHE (28 << 16) | #define ND_POINTCACHE (28 << 16) | ||||
| #define ND_PARENT (29 << 16) | #define ND_PARENT (29 << 16) | ||||
| #define ND_LOD (30 << 16) | #define ND_LOD (30 << 16) | ||||
| #define ND_DRAW_RENDER_VIEWPORT \ | #define ND_DRAW_RENDER_VIEWPORT \ | ||||
| (31 << 16) /* for camera & sequencer viewport update, also /w NC_SCENE */ | (31 << 16) /* for camera & sequencer viewport update, also /w NC_SCENE */ | ||||
| #define ND_SHADERFX (32 << 16) | #define ND_SHADERFX (32 << 16) | ||||
| #define ND_DRAW_ANIMVIZ (33 << 16) | |||||
Severin: Please add a comment explaining what this is and when it should be used.
The notifiers are… | |||||
| /* NC_MATERIAL Material */ | /* NC_MATERIAL Material */ | ||||
| #define ND_SHADING (30 << 16) | #define ND_SHADING (30 << 16) | ||||
| #define ND_SHADING_DRAW (31 << 16) | #define ND_SHADING_DRAW (31 << 16) | ||||
| #define ND_SHADING_LINKS (32 << 16) | #define ND_SHADING_LINKS (32 << 16) | ||||
| #define ND_SHADING_PREVIEW (33 << 16) | #define ND_SHADING_PREVIEW (33 << 16) | ||||
| /* NC_LAMP Light */ | /* NC_LAMP Light */ | ||||
| ▲ Show 20 Lines • Show All 625 Lines • Show Last 20 Lines | |||||
Please add a comment explaining what this is and when it should be used.
The notifiers are chronically under-documented, we better start addressing that.