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:
Diffstat (limited to 'source/blender/draw/intern/draw_hair_private.h')
-rw-r--r--source/blender/draw/intern/draw_hair_private.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/draw/intern/draw_hair_private.h b/source/blender/draw/intern/draw_hair_private.h
index c77f236e066..8f7cb1fe949 100644
--- a/source/blender/draw/intern/draw_hair_private.h
+++ b/source/blender/draw/intern/draw_hair_private.h
@@ -54,9 +54,13 @@ typedef struct ParticleHairCache {
GPUVertBuf *proc_point_buf; /* Input control points */
GPUTexture *point_tex;
- GPUVertBuf *proc_strand_buf; /* Infos of control points strands (segment count and base index) */
+ /** Infos of control points strands (segment count and base index) */
+ GPUVertBuf *proc_strand_buf;
GPUTexture *strand_tex;
+ GPUVertBuf *proc_strand_seg_buf;
+ GPUTexture *strand_seg_tex;
+
GPUVertBuf *proc_uv_buf[MAX_MTFACE];
GPUTexture *uv_tex[MAX_MTFACE];
char uv_layer_names[MAX_MTFACE][MAX_LAYER_NAME_CT][MAX_LAYER_NAME_LEN];