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:
authorCampbell Barton <ideasman42@gmail.com>2017-04-29 09:52:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-04-29 09:52:12 +0300
commit8f028ec8408c35c2029e6a0caeb7eb27dc8e53f3 (patch)
tree897954a657ae5d01489550c5d54c0f8d286b8558 /source/blender/draw/modes/edit_lattice_mode.c
parent33a5248b6c82d7930089544be10480fa0a25aa80 (diff)
Cleanup: rename struct for private engine data
Also remove from pass list (there were some duplicate unused entries).
Diffstat (limited to 'source/blender/draw/modes/edit_lattice_mode.c')
-rw-r--r--source/blender/draw/modes/edit_lattice_mode.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/draw/modes/edit_lattice_mode.c b/source/blender/draw/modes/edit_lattice_mode.c
index 61c01fb3f48..32411ea470d 100644
--- a/source/blender/draw/modes/edit_lattice_mode.c
+++ b/source/blender/draw/modes/edit_lattice_mode.c
@@ -81,7 +81,7 @@ typedef struct EDIT_LATTICE_StorageList {
* free with MEM_freeN() when viewport is freed.
* (not per object) */
struct CustomStruct *block;
- struct g_data *g_data;
+ struct EDIT_LATTICE_PrivateData *g_data;
} EDIT_LATTICE_StorageList;
typedef struct EDIT_LATTICE_Data {
@@ -108,12 +108,12 @@ static struct {
} e_data = {NULL}; /* Engine data */
-typedef struct g_data {
+typedef struct EDIT_LATTICE_PrivateData {
/* This keeps the references of the shading groups for
* easy access in EDIT_LATTICE_cache_populate() */
DRWShadingGroup *wire_shgrp;
DRWShadingGroup *vert_shgrp;
-} g_data; /* Transient data */
+} EDIT_LATTICE_PrivateData; /* Transient data */
/* *********** FUNCTIONS *********** */
@@ -164,7 +164,7 @@ static void EDIT_LATTICE_cache_init(void *vedata)
if (!stl->g_data) {
/* Alloc transient pointers */
- stl->g_data = MEM_mallocN(sizeof(g_data), "g_data");
+ stl->g_data = MEM_mallocN(sizeof(*stl->g_data), __func__);
}
{