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
path: root/source
diff options
context:
space:
mode:
authorLuca Rood <dev@lucarood.com>2017-05-05 12:38:15 +0300
committerLuca Rood <dev@lucarood.com>2017-05-05 12:38:15 +0300
commita7388d650a8b0045aee680ca38cc02fc021ebbc3 (patch)
treeee7f5ee058496e97ad275dfd4eb9bbd206b195af /source
parentce04c7e9f6886ced133d4566722ca36ca7bba2af (diff)
Fix empty struct errors in paint_vertex_mode.c
Diffstat (limited to 'source')
-rw-r--r--source/blender/draw/modes/paint_vertex_mode.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/source/blender/draw/modes/paint_vertex_mode.c b/source/blender/draw/modes/paint_vertex_mode.c
index ce09307bc0c..6c16601e850 100644
--- a/source/blender/draw/modes/paint_vertex_mode.c
+++ b/source/blender/draw/modes/paint_vertex_mode.c
@@ -45,20 +45,14 @@ typedef struct PAINT_VERTEX_PassList {
struct DRWPass *wire_overlay;
} PAINT_VERTEX_PassList;
-typedef struct PAINT_VERTEX_FramebufferList {
-} PAINT_VERTEX_FramebufferList;
-
-typedef struct PAINT_VERTEX_TextureList {
-} PAINT_VERTEX_TextureList;
-
typedef struct PAINT_VERTEX_StorageList {
struct PAINT_VERTEX_PrivateData *g_data;
} PAINT_VERTEX_StorageList;
typedef struct PAINT_VERTEX_Data {
void *engine_type; /* Required */
- PAINT_VERTEX_FramebufferList *fbl;
- PAINT_VERTEX_TextureList *txl;
+ DRWViewportEmptyList *fbl;
+ DRWViewportEmptyList *txl;
PAINT_VERTEX_PassList *psl;
PAINT_VERTEX_StorageList *stl;
} PAINT_VERTEX_Data;