svga: collect stats for time spent in svga_context_finish()
authorBrian Paul <brianp@vmware.com>
Fri, 28 Oct 2016 20:04:32 +0000 (13:04 -0700)
committerBrian Paul <brianp@vmware.com>
Thu, 3 Nov 2016 20:29:23 +0000 (14:29 -0600)
This should have appeared with commit "svga: add guest statistic
gathering interface" from August 4, but was somehow lost.

src/gallium/drivers/svga/svga_context.c

index 21ce508..436961b 100644 (file)
@@ -386,9 +386,13 @@ svga_context_finish(struct svga_context *svga)
    struct pipe_screen *screen = svga->pipe.screen;
    struct pipe_fence_handle *fence = NULL;
 
+   SVGA_STATS_TIME_PUSH(svga_sws(svga), SVGA_STATS_TIME_CONTEXTFINISH);
+
    svga_context_flush(svga, &fence);
    screen->fence_finish(screen, NULL, fence, PIPE_TIMEOUT_INFINITE);
    screen->fence_reference(screen, &fence, NULL);
+
+   SVGA_STATS_TIME_POP(svga_sws(svga));
 }