mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
384121563d
--HG-- extra : rebase_source : 239ff77ec3765a3f190ed75b1645c6011e5d1dbd
116 lines
3.4 KiB
C++
116 lines
3.4 KiB
C++
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
* 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/. */
|
|
|
|
#ifndef MOZILLA_GFX_TEXTURECLIENTPOOL_H
|
|
#define MOZILLA_GFX_TEXTURECLIENTPOOL_H
|
|
|
|
#include "mozilla/gfx/Types.h"
|
|
#include "mozilla/gfx/Point.h"
|
|
#include "mozilla/RefPtr.h"
|
|
#include "TextureClient.h"
|
|
#include "nsITimer.h"
|
|
#include <stack>
|
|
|
|
namespace mozilla {
|
|
namespace layers {
|
|
|
|
class ISurfaceAllocator;
|
|
|
|
class TextureClientPool MOZ_FINAL
|
|
{
|
|
~TextureClientPool();
|
|
|
|
public:
|
|
NS_INLINE_DECL_REFCOUNTING(TextureClientPool)
|
|
|
|
TextureClientPool(gfx::SurfaceFormat aFormat, gfx::IntSize aSize,
|
|
ISurfaceAllocator *aAllocator);
|
|
|
|
/**
|
|
* Gets an allocated TextureClient of size and format that are determined
|
|
* by the initialisation parameters given to the pool. This will either be
|
|
* a cached client that was returned to the pool, or a newly allocated
|
|
* client if one isn't available.
|
|
*
|
|
* All clients retrieved by this method should be returned using the return
|
|
* functions, or reported lost so that the pool can manage its size correctly.
|
|
*/
|
|
TemporaryRef<TextureClient> GetTextureClient();
|
|
|
|
/**
|
|
* Return a TextureClient that is no longer being used and is ready for
|
|
* immediate re-use or destruction.
|
|
*/
|
|
void ReturnTextureClient(TextureClient *aClient);
|
|
|
|
/**
|
|
* Return a TextureClient that is not yet ready to be reused, but will be
|
|
* imminently.
|
|
*/
|
|
void ReturnTextureClientDeferred(TextureClient *aClient);
|
|
|
|
/**
|
|
* Attempt to shrink the pool so that there are no more than
|
|
* sMaxTextureClients clients outstanding.
|
|
*/
|
|
void ShrinkToMaximumSize();
|
|
|
|
/**
|
|
* Attempt to shrink the pool so that there are no more than sMinCacheSize
|
|
* unused clients.
|
|
*/
|
|
void ShrinkToMinimumSize();
|
|
|
|
/**
|
|
* Return any clients to the pool that were previously returned in
|
|
* ReturnTextureClientDeferred.
|
|
*/
|
|
void ReturnDeferredClients();
|
|
|
|
/**
|
|
* Report that a client retrieved via GetTextureClient() has become
|
|
* unusable, so that it will no longer be tracked.
|
|
*/
|
|
void ReportClientLost() { mOutstandingClients--; }
|
|
|
|
/**
|
|
* Calling this will cause the pool to attempt to relinquish any unused
|
|
* clients.
|
|
*/
|
|
void Clear();
|
|
|
|
gfx::SurfaceFormat GetFormat() { return mFormat; }
|
|
|
|
private:
|
|
// The time in milliseconds before the pool will be shrunk to the minimum
|
|
// size after returning a client.
|
|
static const uint32_t sShrinkTimeout = 1000;
|
|
|
|
// The minimum size of the pool (the number of tiles that will be kept after
|
|
// shrinking).
|
|
static const uint32_t sMinCacheSize = 0;
|
|
|
|
// The maximum number of texture clients managed by this pool that we want
|
|
// to remain active.
|
|
static const uint32_t sMaxTextureClients = 50;
|
|
|
|
gfx::SurfaceFormat mFormat;
|
|
gfx::IntSize mSize;
|
|
|
|
uint32_t mOutstandingClients;
|
|
|
|
// On b2g gonk, std::queue might be a better choice.
|
|
// On ICS, fence wait happens implicitly before drawing.
|
|
// Since JB, fence wait happens explicitly when fetching a client from the pool.
|
|
std::stack<RefPtr<TextureClient> > mTextureClients;
|
|
std::stack<RefPtr<TextureClient> > mTextureClientsDeferred;
|
|
nsRefPtr<nsITimer> mTimer;
|
|
RefPtr<ISurfaceAllocator> mSurfaceAllocator;
|
|
};
|
|
|
|
}
|
|
}
|
|
#endif /* MOZILLA_GFX_TEXTURECLIENTPOOL_H */
|