blob: a862bb640cebef1a10fa3c6bd92b8f2cd228f976 [file] [log] [blame]
/*
* Copyright 2018 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrUninstantiateProxyTracker_DEFINED
#define GrUninstantiateProxyTracker_DEFINED
#include "SkTArray.h"
class GrSurfaceProxy;
class GrUninstantiateProxyTracker {
public:
GrUninstantiateProxyTracker() {}
// Adds a proxy which will be uninstantiated at the end of flush. The same proxy may not be
// added multiple times.
void addProxy(GrSurfaceProxy* proxy);
// Loops through all tracked proxies and uninstantiates them.
void uninstantiateAllProxies();
private:
SkTArray<GrSurfaceProxy*> fProxies;
};
#endif