aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrUninstantiateProxyTracker.h
blob: 5245466fd7a2153671130e4996af6f571a3ab478 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * 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 "GrSurfaceProxy.h"
#include "SkTArray.h"

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<sk_sp<GrSurfaceProxy>> fProxies;
};

#endif