From 530b9b09b2987fe4e7365023bfe4c29f5078ccac Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Sun, 12 May 2019 18:00:25 +0200 Subject: [PATCH] ui/app/internal/gpu: drop useless timing It is almost always 0. Signed-off-by: Elias Naur --- ui/app/internal/gpu/gpu.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/internal/gpu/gpu.go b/ui/app/internal/gpu/gpu.go index ad810a4c..847c0f74 100644 --- a/ui/app/internal/gpu/gpu.go +++ b/ui/app/internal/gpu/gpu.go @@ -249,7 +249,7 @@ func (g *GPU) renderLoop(glctx gl.Context) error { q := 100 * time.Microsecond zt, st, covt, cleant = zt.Round(q), st.Round(q), covt.Round(q), cleant.Round(q) ft = ft.Round(q) - res.summary = fmt.Sprintf("f:%7s zt:%7s st:%7s cov:%7s cl:%7s", ft, zt, st, covt, cleant) + res.summary = fmt.Sprintf("f:%7s zt:%7s st:%7s cov:%7s", ft, zt, st, covt) } res.err = err g.results <- res