From: Steinar H. Gunderson Date: Sat, 4 Aug 2018 13:33:29 +0000 (+0200) Subject: Fix an outdated comment. X-Git-Tag: 1.8.0~76^2~136 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=c20ac3210a3eb12531939afb32a232ba9c68a0b5;hp=6911c97816e4dde727ed3aa0fa0631c4047d2bd6;p=nageru Fix an outdated comment. --- diff --git a/flow.cpp b/flow.cpp index 1e48733..b5656cb 100644 --- a/flow.cpp +++ b/flow.cpp @@ -1137,8 +1137,7 @@ GLuint DISComputeFlow::exec(GLuint tex0, GLuint tex1, ResizeStrategy resize_stra setup_equations.exec(I_x_y_tex, I_t_tex, du_dv_tex, base_flow_tex, beta_0_tex, diffusivity_tex, equation_red_tex, equation_black_tex, level_width, level_height, outer_idx == 0); } - // Run a few SOR (or quasi-SOR, since we're not really Jacobi) iterations. - // Note that these are to/from the same texture. + // Run a few SOR iterations. Note that these are to/from the same texture. { ScopedTimer timer("SOR", &varref_timer); sor.exec(du_dv_tex, equation_red_tex, equation_black_tex, diffusivity_tex, level_width, level_height, 5, outer_idx == 0, &timer);