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-03-13 13:39:41 +0300
committerClément Foucault <foucault.clem@gmail.com>2017-03-13 13:39:41 +0300
commitecce1fabca7fbc7551d6b706663f44662719ec1f (patch)
treef67fae6bd6c92930dd6f17fb8004718f74eda2e3 /source/blender/draw/modes/paint_weight_mode.c
parent7bc76f8a3c1416bf2dca09bfc0d2eeee0147bd1a (diff)
Mode Engines: Fix MSVC compilation error.
Diffstat (limited to 'source/blender/draw/modes/paint_weight_mode.c')
-rw-r--r--source/blender/draw/modes/paint_weight_mode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/draw/modes/paint_weight_mode.c b/source/blender/draw/modes/paint_weight_mode.c
index d5cfae88bfe..e90f29a5434 100644
--- a/source/blender/draw/modes/paint_weight_mode.c
+++ b/source/blender/draw/modes/paint_weight_mode.c
@@ -52,7 +52,7 @@ typedef struct PAINT_WEIGHT_PassList {
typedef struct PAINT_WEIGHT_FramebufferList {
/* Contains all framebuffer objects needed by this engine.
* Only contains (GPUFrameBuffer *) */
- // struct GPUFrameBuffer *fb;
+ struct GPUFrameBuffer *fb;
} PAINT_WEIGHT_FramebufferList;
/* keep it under MAX_TEXTURES */
@@ -60,7 +60,7 @@ typedef struct PAINT_WEIGHT_TextureList {
/* Contains all framebuffer textures / utility textures
* needed by this engine. Only viewport specific textures
* (not per object). Only contains (GPUTexture *) */
- // struct GPUTexture *texture;
+ struct GPUTexture *texture;
} PAINT_WEIGHT_TextureList;
/* keep it under MAX_STORAGE */
@@ -69,7 +69,7 @@ typedef struct PAINT_WEIGHT_StorageList {
* Only directly MEM_(m/c)allocN'ed blocks because they are
* free with MEM_freeN() when viewport is freed.
* (not per object) */
- // struct CustomStruct *block;
+ struct CustomStruct *block;
} PAINT_WEIGHT_StorageList;
typedef struct PAINT_WEIGHT_Data {