2013-06-10 20:00:35 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2014-11-14 04:03:50 +00:00
|
|
|
#ifndef WEBGL_MEMORY_TRACKER_H_
|
|
|
|
#define WEBGL_MEMORY_TRACKER_H_
|
2013-06-10 20:00:35 +00:00
|
|
|
|
2014-11-14 04:03:50 +00:00
|
|
|
#include "mozilla/StaticPtr.h"
|
|
|
|
#include "nsIMemoryReporter.h"
|
2013-06-10 20:00:35 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2015-07-15 00:37:28 +00:00
|
|
|
class WebGLContext;
|
|
|
|
|
2013-12-08 05:39:47 +00:00
|
|
|
class WebGLMemoryTracker : public nsIMemoryReporter
|
2013-06-10 20:00:35 +00:00
|
|
|
{
|
2013-12-08 05:39:47 +00:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
|
|
|
NS_DECL_NSIMEMORYREPORTER
|
2013-11-26 00:01:52 +00:00
|
|
|
|
2013-11-26 00:03:38 +00:00
|
|
|
WebGLMemoryTracker();
|
|
|
|
static StaticRefPtr<WebGLMemoryTracker> sUniqueInstance;
|
2013-11-26 00:01:52 +00:00
|
|
|
|
2013-11-07 05:35:30 +00:00
|
|
|
// Here we store plain pointers, not RefPtrs: we don't want the
|
2013-11-26 00:03:38 +00:00
|
|
|
// WebGLMemoryTracker unique instance to keep alive all
|
2013-06-10 20:00:35 +00:00
|
|
|
// WebGLContexts ever created.
|
|
|
|
typedef nsTArray<const WebGLContext*> ContextsArrayType;
|
|
|
|
ContextsArrayType mContexts;
|
|
|
|
|
2013-11-07 05:35:30 +00:00
|
|
|
void InitMemoryReporter();
|
2013-06-10 20:00:35 +00:00
|
|
|
|
2013-11-26 00:03:38 +00:00
|
|
|
static WebGLMemoryTracker* UniqueInstance();
|
2013-06-10 20:00:35 +00:00
|
|
|
|
2014-11-14 04:03:50 +00:00
|
|
|
static ContextsArrayType& Contexts() { return UniqueInstance()->mContexts; }
|
2013-06-10 20:00:35 +00:00
|
|
|
|
|
|
|
friend class WebGLContext;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
static void AddWebGLContext(const WebGLContext* c) {
|
|
|
|
Contexts().AppendElement(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void RemoveWebGLContext(const WebGLContext* c) {
|
|
|
|
ContextsArrayType & contexts = Contexts();
|
|
|
|
contexts.RemoveElement(c);
|
|
|
|
if (contexts.IsEmpty()) {
|
|
|
|
sUniqueInstance = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-07 05:35:30 +00:00
|
|
|
private:
|
2014-06-26 13:30:49 +00:00
|
|
|
virtual ~WebGLMemoryTracker();
|
|
|
|
|
2015-07-15 00:37:28 +00:00
|
|
|
static int64_t GetTextureMemoryUsed();
|
2013-06-10 20:00:35 +00:00
|
|
|
|
2015-07-15 00:37:28 +00:00
|
|
|
static int64_t GetTextureCount();
|
2013-06-10 20:00:35 +00:00
|
|
|
|
2015-07-15 00:37:28 +00:00
|
|
|
static int64_t GetBufferMemoryUsed();
|
2013-06-10 20:00:35 +00:00
|
|
|
|
|
|
|
static int64_t GetBufferCacheMemoryUsed();
|
|
|
|
|
2015-07-15 00:37:28 +00:00
|
|
|
static int64_t GetBufferCount();
|
2013-06-10 20:00:35 +00:00
|
|
|
|
2015-07-15 00:37:28 +00:00
|
|
|
static int64_t GetRenderbufferMemoryUsed();
|
2013-06-10 20:00:35 +00:00
|
|
|
|
2015-07-15 00:37:28 +00:00
|
|
|
static int64_t GetRenderbufferCount();
|
2013-06-10 20:00:35 +00:00
|
|
|
|
|
|
|
static int64_t GetShaderSize();
|
|
|
|
|
2015-07-15 00:37:28 +00:00
|
|
|
static int64_t GetShaderCount();
|
2013-06-10 20:00:35 +00:00
|
|
|
|
|
|
|
static int64_t GetContextCount() {
|
|
|
|
return Contexts().Length();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2014-11-14 04:03:50 +00:00
|
|
|
#endif // WEBGL_MEMORY_TRACKER_H_
|