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:
-rw-r--r--source/blender/draw/modes/shaders/particle_strand_vert.glsl7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/draw/modes/shaders/particle_strand_vert.glsl b/source/blender/draw/modes/shaders/particle_strand_vert.glsl
index c3f8fb89c17..45fadb4ed5e 100644
--- a/source/blender/draw/modes/shaders/particle_strand_vert.glsl
+++ b/source/blender/draw/modes/shaders/particle_strand_vert.glsl
@@ -55,16 +55,17 @@ void main()
#endif
#ifdef USE_POINTS
- gl_PointSize = sizeVertex;
+ float size = sizeVertex * 2.0;
+ gl_PointSize = size;
/* calculate concentric radii in pixels */
- float radius = 0.5 * sizeVertex;
+ float radius = sizeVertex;
/* start at the outside and progress toward the center */
radii[0] = radius;
radii[1] = radius - 1.0;
/* convert to PointCoord units */
- radii /= sizeVertex;
+ radii /= size;
#endif
}