Parameter to control the stabilization amount of the brush.
This stabilization works as a dynamic smooth using the previous points to calculate the estimated position and average the position to get smoother strokes.
This is not a replace of smooth factor that works after finish stroke. This new parameter is applyed while drawing before ending the stroke.
Fix: Depsgraph was complaining in debug mode about the "geometry_eval" opnode for GPencil not having any function attached
In future, maybe we should move the derived_gpf calculations (and by extension, the modifier-evaluation loops) into the BKE_gpencil_eval_geometry() callback added in this commit.
A new smooth algorithm is used for each new buffer point using the last two points to calculate the estimated position and average this point with the current mouse position.
This smooth reduce the jitter of the stroke and allows to use lower post smooth values to reduce stroke change after finish stroke.
Now the factor is hardcoded, but after some more testing maybe we need add a parameter by brush.