Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/mask.c
| Show First 20 Lines • Show All 264 Lines • ▼ Show 20 Lines | IDTypeInfo IDType_ID_MSK = { | ||||
| .foreach_cache = NULL, | .foreach_cache = NULL, | ||||
| .blend_write = mask_blend_write, | .blend_write = mask_blend_write, | ||||
| .blend_read_data = mask_blend_read_data, | .blend_read_data = mask_blend_read_data, | ||||
| .blend_read_lib = mask_blend_read_lib, | .blend_read_lib = mask_blend_read_lib, | ||||
| .blend_read_expand = mask_blend_read_expand, | .blend_read_expand = mask_blend_read_expand, | ||||
| .blend_read_undo_preserve = NULL, | .blend_read_undo_preserve = NULL, | ||||
| .lib_override_apply_post = NULL, | |||||
| }; | }; | ||||
| static struct { | static struct { | ||||
| ListBase splines; | ListBase splines; | ||||
| struct GHash *id_hash; | struct GHash *id_hash; | ||||
| } mask_clipboard = {{NULL}}; | } mask_clipboard = {{NULL}}; | ||||
| static MaskSplinePoint *mask_spline_point_next(MaskSpline *spline, | static MaskSplinePoint *mask_spline_point_next(MaskSpline *spline, | ||||
| ▲ Show 20 Lines • Show All 1,863 Lines • Show Last 20 Lines | |||||