From 41c7c744eb530e7f67ba0edd718765f12029684c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 9 Jun 2022 21:31:08 +1000 Subject: Cleanup: use C-style comments, add missing doxy section --- .../draw/engines/overlay/shaders/overlay_point_varying_color_frag.glsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/draw') diff --git a/source/blender/draw/engines/overlay/shaders/overlay_point_varying_color_frag.glsl b/source/blender/draw/engines/overlay/shaders/overlay_point_varying_color_frag.glsl index 4962fb01c88..b0da035ef09 100644 --- a/source/blender/draw/engines/overlay/shaders/overlay_point_varying_color_frag.glsl +++ b/source/blender/draw/engines/overlay/shaders/overlay_point_varying_color_frag.glsl @@ -5,7 +5,7 @@ void main() float dist_squared = dot(centered, centered); const float rad_squared = 0.25; - // round point with jaggy edges + /* Round point with jaggy edges. */ if (dist_squared > rad_squared) { discard; } -- cgit v1.2.3