This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/draw/modes/shaders/object_particle_dot_vert.glsl
Campbell Barton e12c08e8d1 ClangFormat: apply to source, most of intern
Apply clang format as proposed in T53211.

For details on usage and instructions for migrating branches
without conflicts, see:

https://wiki.blender.org/wiki/Tools/ClangFormat
2019-04-17 06:21:24 +02:00

38 lines
786 B
GLSL

uniform mat4 ModelViewMatrix;
uniform mat4 ProjectionMatrix;
uniform float pixel_size;
uniform float size;
in vec3 pos;
in float val;
out vec4 radii;
flat out float finalVal;
void main()
{
gl_Position = ModelViewMatrix * vec4(pos, 1.0);
float psize = (ProjectionMatrix[3][3] == 0.0) ? (size / (-gl_Position.z * pixel_size)) :
(size / pixel_size);
gl_PointSize = psize;
// calculate concentric radii in pixels
float radius = 0.5 * psize;
// start at the outside and progress toward the center
radii[0] = radius;
radii[1] = radius - 1.0;
radii[2] = radius - 1.0;
radii[3] = radius - 2.0;
// convert to PointCoord units
radii /= psize;
gl_Position = ProjectionMatrix * gl_Position;
finalVal = val;
}