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:
Diffstat (limited to 'source/blender/draw/engines/overlay/overlay_private.h')
-rw-r--r--source/blender/draw/engines/overlay/overlay_private.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/source/blender/draw/engines/overlay/overlay_private.h b/source/blender/draw/engines/overlay/overlay_private.h
index 8e7c3094062..6a322e300f5 100644
--- a/source/blender/draw/engines/overlay/overlay_private.h
+++ b/source/blender/draw/engines/overlay/overlay_private.h
@@ -216,37 +216,37 @@ typedef struct OVERLAY_ExtraCallBuffers {
DRWShadingGroup *extra_loose_points;
} OVERLAY_ExtraCallBuffers;
-typedef struct OVERLAY_ArmatureCallBuffers {
+typedef struct OVERLAY_ArmatureCallBuffersInner {
DRWCallBuffer *box_outline;
- DRWCallBuffer *box_solid;
- DRWCallBuffer *box_transp;
+ DRWCallBuffer *box_fill;
DRWCallBuffer *dof_lines;
DRWCallBuffer *dof_sphere;
DRWCallBuffer *envelope_distance;
DRWCallBuffer *envelope_outline;
- DRWCallBuffer *envelope_solid;
- DRWCallBuffer *envelope_transp;
+ DRWCallBuffer *envelope_fill;
DRWCallBuffer *octa_outline;
- DRWCallBuffer *octa_solid;
- DRWCallBuffer *octa_transp;
+ DRWCallBuffer *octa_fill;
DRWCallBuffer *point_outline;
- DRWCallBuffer *point_solid;
- DRWCallBuffer *point_transp;
+ DRWCallBuffer *point_fill;
DRWCallBuffer *stick;
DRWCallBuffer *wire;
DRWShadingGroup *custom_outline;
- DRWShadingGroup *custom_solid;
- DRWShadingGroup *custom_transp;
+ DRWShadingGroup *custom_fill;
DRWShadingGroup *custom_wire;
- GHash *custom_shapes_transp_ghash;
+
GHash *custom_shapes_ghash;
+} OVERLAY_ArmatureCallBuffersInner;
+
+typedef struct OVERLAY_ArmatureCallBuffers {
+ OVERLAY_ArmatureCallBuffersInner solid;
+ OVERLAY_ArmatureCallBuffersInner transp;
} OVERLAY_ArmatureCallBuffers;
typedef struct OVERLAY_PrivateData {