2018-05-31 16:43:27 +00:00
|
|
|
/*
|
|
|
|
* 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 GrCCPerOpListPaths_DEFINED
|
|
|
|
#define GrCCPerOpListPaths_DEFINED
|
|
|
|
|
|
|
|
#include "SkArenaAlloc.h"
|
|
|
|
#include "SkRefCnt.h"
|
|
|
|
#include "SkTInternalLList.h"
|
|
|
|
#include "GrCCClipPath.h"
|
2018-09-19 14:28:59 +00:00
|
|
|
|
2018-05-31 16:43:27 +00:00
|
|
|
#include <map>
|
|
|
|
|
|
|
|
class GrCCDrawPathsOp;
|
|
|
|
class GrCCPerFlushResources;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tracks all the CCPR paths in a given opList that will be drawn when it flushes.
|
|
|
|
*/
|
|
|
|
// DDL TODO: given the usage pattern in DDL mode, this could probably be non-atomic refcounting.
|
2018-09-14 06:44:22 +00:00
|
|
|
struct GrCCPerOpListPaths : public SkRefCnt {
|
|
|
|
SkTInternalLList<GrCCDrawPathsOp> fDrawOps; // This class does not own these ops.
|
2018-05-31 16:43:27 +00:00
|
|
|
std::map<uint32_t, GrCCClipPath> fClipPaths;
|
|
|
|
SkSTArenaAlloc<10 * 1024> fAllocator{10 * 1024 * 2};
|
|
|
|
sk_sp<const GrCCPerFlushResources> fFlushResources;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|