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>2017-04-03 20:32:05 +0300
committerClément Foucault <foucault.clem@gmail.com>2017-04-03 22:52:42 +0300
commit4a8aaab0b2ab84455450fcdd1e39e190862b0bb6 (patch)
tree8980b25eae7e18bcae6931d08a2848e7c0de1661 /source/blender/draw/modes/paint_weight_mode.c
parentccd8353d58d769d435822e7dac25d8fdf317d6df (diff)
Draw Manager: Use engine type pointer instead of engine name.
Faster search
Diffstat (limited to 'source/blender/draw/modes/paint_weight_mode.c')
-rw-r--r--source/blender/draw/modes/paint_weight_mode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/draw/modes/paint_weight_mode.c b/source/blender/draw/modes/paint_weight_mode.c
index 3063e685149..2d189e07fd2 100644
--- a/source/blender/draw/modes/paint_weight_mode.c
+++ b/source/blender/draw/modes/paint_weight_mode.c
@@ -83,7 +83,7 @@ typedef struct PAINT_WEIGHT_Data {
/* Struct returned by DRW_viewport_engine_data_get.
* If you don't use one of these, just make it a (void *) */
// void *fbl;
- char engine_name[32]; /* Required */
+ void *engine_type; /* Required */
PAINT_WEIGHT_FramebufferList *fbl;
PAINT_WEIGHT_TextureList *txl;
PAINT_WEIGHT_PassList *psl;