]> git.sesse.net Git - nageru/commitdiff
Rename “Total” to something more descriptive.
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 7 Aug 2018 16:59:56 +0000 (18:59 +0200)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Tue, 7 Aug 2018 16:59:56 +0000 (18:59 +0200)
flow.cpp

index c09d15ea0281479270d843af0f767c7d633eaaaa..0cef41dcdce0b23775a17f047b6c54cffab5ad25 100644 (file)
--- 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);