From ac57b159b5860cac8aeb00832c0cf0e4f9d12a36 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Tue, 7 Aug 2018 18:59:56 +0200 Subject: [PATCH] =?utf8?q?Rename=20=E2=80=9CTotal=E2=80=9D=20to=20somethin?= =?utf8?q?g=20more=20descriptive.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- flow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flow.cpp b/flow.cpp index c09d15e..0cef41d 100644 --- a/flow.cpp +++ b/flow.cpp @@ -1027,7 +1027,7 @@ GLuint DISComputeFlow::exec(GLuint tex0, GLuint tex1, ResizeStrategy resize_stra glBindVertexArray(vao); - ScopedTimer total_timer("Total", &timers); + ScopedTimer total_timer("Compute flow", &timers); for (int level = coarsest_level; level >= int(finest_level); --level) { char timer_name[256]; snprintf(timer_name, sizeof(timer_name), "Level %d (%d x %d)", level, width >> level, height >> level); @@ -1521,7 +1521,7 @@ GLuint Interpolate::exec(GLuint tex0, GLuint tex1, GLuint forward_flow_tex, GLui { GPUTimers timers; - ScopedTimer total_timer("Total", &timers); + ScopedTimer total_timer("Interpolate", &timers); glBindVertexArray(vao); -- 2.39.2