aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/ccpr/GrCCPRAtlas.h
blob: aa77e351d8b6280aaf61143a5cd092f236c9350b (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
 * Copyright 2017 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef GrCCPRAtlas_DEFINED
#define GrCCPRAtlas_DEFINED

#include "SkRefCnt.h"
#include "SkSize.h"

class GrCaps;
class GrDrawOp;
class GrOnFlushResourceProvider;
class GrRenderTargetContext;
class GrTextureProxy;
struct SkIPoint16;

/**
 * This class implements a dynamic size GrRectanizer that grows until it reaches the implementation-
 * dependent max texture size. When finalized, it also creates and stores a GrTextureProxy for the
 * underlying atlas.
 */
class GrCCPRAtlas {
public:
    static constexpr int kMinSize = 1024;

    GrCCPRAtlas(const GrCaps&, int minWidth, int minHeight);
    ~GrCCPRAtlas();

    bool addRect(int devWidth, int devHeight, SkIPoint16* loc);
    const SkISize& drawBounds() { return fDrawBounds; }

    sk_sp<GrRenderTargetContext> SK_WARN_UNUSED_RESULT finalize(GrOnFlushResourceProvider*,
                                                                std::unique_ptr<GrDrawOp> atlasOp);

    GrTextureProxy* textureProxy() const { return fTextureProxy.get(); }

private:
    class Node;

    bool internalPlaceRect(int w, int h, SkIPoint16* loc);

    const int                                fMaxAtlasSize;

    int                                      fWidth;
    int                                      fHeight;
    SkISize                                  fDrawBounds;
    std::unique_ptr<Node>                    fTopNode;

    sk_sp<GrTextureProxy>                    fTextureProxy;
};

#endif