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/engines/eevee/eevee_private.h
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/engines/eevee/eevee_private.h')
-rw-r--r--source/blender/draw/engines/eevee/eevee_private.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/draw/engines/eevee/eevee_private.h b/source/blender/draw/engines/eevee/eevee_private.h
index 02dc32ddd9a..ee8e8598725 100644
--- a/source/blender/draw/engines/eevee/eevee_private.h
+++ b/source/blender/draw/engines/eevee/eevee_private.h
@@ -89,7 +89,7 @@ typedef struct EEVEE_StorageList {
struct EEVEE_ProbesInfo *probes;
struct GPUUniformBuffer *probe_ubo;
- struct g_data *g_data;
+ struct EEVEE_PrivateData *g_data;
} EEVEE_StorageList;
/* ************ LIGHT UBO ************* */
@@ -173,7 +173,7 @@ typedef struct EEVEE_LampEngineData {
void *pad;
} EEVEE_LampEngineData;
-typedef struct g_data{
+typedef struct EEVEE_PrivateData {
struct DRWShadingGroup *default_lit_grp;
struct DRWShadingGroup *material_lit_grp;
struct DRWShadingGroup *shadow_shgrp;
@@ -181,7 +181,7 @@ typedef struct g_data{
struct DRWShadingGroup *depth_shgrp_cull;
struct ListBase lamps; /* Lamps gathered during cache iteration */
-} g_data; /* Transient data */
+} EEVEE_PrivateData; /* Transient data */
/* eevee_lights.c */
void EEVEE_lights_init(EEVEE_StorageList *stl);