aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/gpu/gl
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2016-05-04 15:21:12 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-05-04 15:21:12 -0700
commit5e56cfd3fa1041dbb83899844fb92fa9a2ef1009 (patch)
treef272195cafb5a417284f9e28fa4155454c237938 /tools/gpu/gl
parent9bd3fc7fa9bb7cad050bd619aa93d4c48ebb5c02 (diff)
SK_DECLARE_STATIC_MUTEX -> static SkMutex
There's no need to use a macro to declare static SkMutexes any more (and there's likewise no need to restrict them to global scope). BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1948193002 Review-Url: https://codereview.chromium.org/1948193002
Diffstat (limited to 'tools/gpu/gl')
-rw-r--r--tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp b/tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp
index 850adaaf25..a6f62f0028 100644
--- a/tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp
+++ b/tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp
@@ -142,7 +142,7 @@ static const GrGLInterface* create_command_buffer_interface() {
// We use a poor man's garbage collector of EGLDisplays. They are only
// terminated when there are no more EGLDisplays in use. See crbug.com/603223
-SK_DECLARE_STATIC_MUTEX(gDisplayMutex);
+static SkMutex gDisplayMutex;
static int gActiveDisplayCnt;
SkTArray<EGLDisplay> gRetiredDisplays;