From c20ac3210a3eb12531939afb32a232ba9c68a0b5 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 4 Aug 2018 15:33:29 +0200 Subject: [PATCH] Fix an outdated comment. --- flow.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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); -- 2.39.2