From 155dd716f1d7bb1fc38989d5ea2151dc7562b982 Mon Sep 17 00:00:00 2001 From: Robert Phillips Date: Thu, 29 Mar 2018 17:20:46 -0400 Subject: [PATCH] Add SK_API to GrContextThreadSafeProxy TBR=egdaniel@google.com TBR=bsalomon@google.com Change-Id: I7dabb22ae391c6ec124bdfc65c4120de4193352e Reviewed-on: https://skia-review.googlesource.com/117235 Reviewed-by: Greg Daniel Commit-Queue: Robert Phillips --- include/gpu/GrContext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/gpu/GrContext.h b/include/gpu/GrContext.h index 6903dc3af0..cc9346c269 100644 --- a/include/gpu/GrContext.h +++ b/include/gpu/GrContext.h @@ -347,7 +347,7 @@ private: * Can be used to perform actions related to the generating GrContext in a thread safe manner. The * proxy does not access the 3D API (e.g. OpenGL) that backs the generating GrContext. */ -class GrContextThreadSafeProxy : public SkRefCnt { +class SK_API GrContextThreadSafeProxy : public SkRefCnt { public: bool matches(GrContext* context) const { return context->uniqueID() == fContextUniqueID; }