Fix error in rBfb0ea9

There is no need to multiply the "dash_width" by `UM.pixel size` since the "viewport_size" is already being divided by the DPI.

Ref {rBfb0ea9}
This commit is contained in:
Germano Cavalcante 2021-11-20 01:44:35 -03:00
parent fb0ea94c63
commit 092df87534
1 changed files with 1 additions and 1 deletions

View File

@ -1068,7 +1068,7 @@ static void draw_fcurve(bAnimContext *ac, SpaceGraph *sipo, ARegion *region, bAn
immBindBuiltinProgram(GPU_SHADER_2D_LINE_DASHED_UNIFORM_COLOR);
immUniform2f("viewport_size", viewport_size[2] / UI_DPI_FAC, viewport_size[3] / UI_DPI_FAC);
immUniform1i("colors_len", 0); /* Simple dashes. */
immUniform1f("dash_width", 4.0f * U.pixelsize);
immUniform1f("dash_width", 4.0f);
immUniform1f("dash_factor", 0.5f);
}
else {