aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/gpu/FenceSync.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gpu/FenceSync.h')
-rw-r--r--tools/gpu/FenceSync.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gpu/FenceSync.h b/tools/gpu/FenceSync.h
index 8f2bbe2e86..b430f5dfa9 100644
--- a/tools/gpu/FenceSync.h
+++ b/tools/gpu/FenceSync.h
@@ -13,7 +13,7 @@
namespace sk_gpu_test {
using PlatformFence = uint64_t;
-static constexpr PlatformFence kInvalidPlatformFence = 0;
+static constexpr PlatformFence kInvalidFence = 0;
/*
* This class provides an interface to interact with fence syncs. A fence sync is an object that the
@@ -29,6 +29,6 @@ public:
virtual ~FenceSync() {}
};
-}
+} // namespace sk_gpu_test
#endif