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:
authorClément Foucault <foucault.clem@gmail.com>2020-02-03 17:58:29 +0300
committerClément Foucault <foucault.clem@gmail.com>2020-02-03 18:15:05 +0300
commit59e1c2f6296e38ab21f2650e32089c22b80777f6 (patch)
treed3024b21462f28b15f15a02dbf504a7a5d80c48a /source/blender/draw/engines/overlay/overlay_private.h
parent88ffee6953cc15a74ace6ef19a37b53cf10f08cd (diff)
Overlay: Armature: Fix wireframe display type not working as 2.81
Diffstat (limited to 'source/blender/draw/engines/overlay/overlay_private.h')
-rw-r--r--source/blender/draw/engines/overlay/overlay_private.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/blender/draw/engines/overlay/overlay_private.h b/source/blender/draw/engines/overlay/overlay_private.h
index 996ee845799..afec20b477d 100644
--- a/source/blender/draw/engines/overlay/overlay_private.h
+++ b/source/blender/draw/engines/overlay/overlay_private.h
@@ -177,6 +177,7 @@ typedef struct OVERLAY_ExtraCallBuffers {
typedef struct OVERLAY_ArmatureCallBuffers {
DRWCallBuffer *box_outline;
DRWCallBuffer *box_solid;
+ DRWCallBuffer *box_transp;
DRWCallBuffer *dof_lines;
DRWCallBuffer *dof_sphere;
@@ -184,20 +185,25 @@ typedef struct OVERLAY_ArmatureCallBuffers {
DRWCallBuffer *envelope_distance;
DRWCallBuffer *envelope_outline;
DRWCallBuffer *envelope_solid;
+ DRWCallBuffer *envelope_transp;
DRWCallBuffer *octa_outline;
DRWCallBuffer *octa_solid;
+ DRWCallBuffer *octa_transp;
DRWCallBuffer *point_outline;
DRWCallBuffer *point_solid;
+ DRWCallBuffer *point_transp;
DRWCallBuffer *stick;
DRWCallBuffer *wire;
- DRWShadingGroup *custom_solid;
DRWShadingGroup *custom_outline;
+ DRWShadingGroup *custom_solid;
+ DRWShadingGroup *custom_transp;
DRWShadingGroup *custom_wire;
+ GHash *custom_shapes_transp_ghash;
GHash *custom_shapes_ghash;
} OVERLAY_ArmatureCallBuffers;