2013-09-06 19:13:37 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* vim: set ts=8 sts=4 et sw=4 tw=80: */
|
|
|
|
/* 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/. */
|
|
|
|
|
2013-09-10 18:10:47 -07:00
|
|
|
#ifndef TEXTUREGARBAGEBIN_H_
|
|
|
|
#define TEXTUREGARBAGEBIN_H_
|
|
|
|
|
2013-09-06 19:13:37 -07:00
|
|
|
#include <stack>
|
|
|
|
|
|
|
|
#include "mozilla/Mutex.h"
|
|
|
|
#include "nsISupportsImpl.h"
|
|
|
|
|
|
|
|
#include "GLContextTypes.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace gl {
|
|
|
|
|
2014-04-04 09:27:02 -07:00
|
|
|
class TextureGarbageBin MOZ_FINAL {
|
2013-09-06 19:13:37 -07:00
|
|
|
NS_INLINE_DECL_THREADSAFE_REFCOUNTING(TextureGarbageBin)
|
|
|
|
|
2014-04-04 09:27:02 -07:00
|
|
|
private:
|
|
|
|
// Private destructor, to discourage deletion outside of Release():
|
|
|
|
~TextureGarbageBin()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-09-06 19:13:37 -07:00
|
|
|
GLContext* mGL;
|
|
|
|
Mutex mMutex;
|
|
|
|
std::stack<GLuint> mGarbageTextures;
|
|
|
|
|
|
|
|
public:
|
2014-08-07 18:17:30 -07:00
|
|
|
explicit TextureGarbageBin(GLContext* gl)
|
2013-09-06 19:13:37 -07:00
|
|
|
: mGL(gl)
|
|
|
|
, mMutex("TextureGarbageBin mutex")
|
|
|
|
{}
|
|
|
|
|
|
|
|
void GLContextTeardown();
|
|
|
|
void Trash(GLuint tex);
|
|
|
|
void EmptyGarbage();
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2013-09-10 18:10:47 -07:00
|
|
|
|
|
|
|
#endif // TEXTUREGARBAGEBIN_H_
|