From 71c5a134d700c3ea449f20237916095e899834d0 Mon Sep 17 00:00:00 2001 From: Elias Naur Date: Fri, 13 Aug 2021 08:25:22 +0200 Subject: [PATCH] gpu: correct GPU.Profile reference to profile.Op Signed-off-by: Elias Naur --- gpu/gpu.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpu/gpu.go b/gpu/gpu.go index 52856e7a..8b94a01f 100644 --- a/gpu/gpu.go +++ b/gpu/gpu.go @@ -49,7 +49,7 @@ type GPU interface { // Frame draws the collected operations to target. Frame(target RenderTarget) error // Profile returns the last available profiling information. Profiling - // information is requested when Collect sees a ProfileOp, and the result + // information is requested when Collect sees an io/profile.Op, and the result // is available through Profile at some later time. Profile() string }