aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--include/gpu/GrContext.h5
-rw-r--r--src/gpu/GrContext.cpp18
2 files changed, 0 insertions, 23 deletions
diff --git a/include/gpu/GrContext.h b/include/gpu/GrContext.h
index 03665d7011..1770fa6ee4 100644
--- a/include/gpu/GrContext.h
+++ b/include/gpu/GrContext.h
@@ -50,11 +50,6 @@ public:
*/
static GrContext* Create(GrBackend, GrBackendContext);
- /**
- * Returns the number of GrContext instances for the current thread.
- */
- static int GetThreadInstanceCount();
-
virtual ~GrContext();
/**
diff --git a/src/gpu/GrContext.cpp b/src/gpu/GrContext.cpp
index cab4414ae2..433b0bb06b 100644
--- a/src/gpu/GrContext.cpp
+++ b/src/gpu/GrContext.cpp
@@ -88,19 +88,7 @@ GrContext* GrContext::Create(GrBackend backend, GrBackendContext backendContext)
}
}
-namespace {
-void* CreateThreadInstanceCount() {
- return SkNEW_ARGS(int, (0));
-}
-void DeleteThreadInstanceCount(void* v) {
- delete reinterpret_cast<int*>(v);
-}
-#define THREAD_INSTANCE_COUNT \
- (*reinterpret_cast<int*>(SkTLS::Get(CreateThreadInstanceCount, DeleteThreadInstanceCount)))
-}
-
GrContext::GrContext() {
- ++THREAD_INSTANCE_COUNT;
fDrawState = NULL;
fGpu = NULL;
fClip = NULL;
@@ -148,10 +136,6 @@ bool GrContext::init(GrBackend backend, GrBackendContext backendContext) {
return true;
}
-int GrContext::GetThreadInstanceCount() {
- return THREAD_INSTANCE_COUNT;
-}
-
GrContext::~GrContext() {
if (NULL == fGpu) {
return;
@@ -181,8 +165,6 @@ GrContext::~GrContext() {
SkSafeUnref(fPathRendererChain);
SkSafeUnref(fSoftwarePathRenderer);
fDrawState->unref();
-
- --THREAD_INSTANCE_COUNT;
}
void GrContext::contextLost() {