HomeSort by relevance Sort by last modified time
    Searched refs:SkDeferredDisplayList (Results 1 - 25 of 37) sorted by null

1 2

  /external/skia/src/core/
SkDeferredDisplayList.cpp 8 #include "SkDeferredDisplayList.h"
13 SkDeferredDisplayList::SkDeferredDisplayList(const SkSurfaceCharacterization& characterization,
19 SkDeferredDisplayList::~SkDeferredDisplayList() {
SkDeferredDisplayListPriv.h 11 #include "SkDeferredDisplayList.h"
13 /** Class that adds methods to SkDeferredDisplayList that are only intended for use internal to Skia.
14 This class is purely a privileged window into SkDeferredDisplayList. It should never have
26 const SkDeferredDisplayList::LazyProxyData* lazyProxyData() const {
35 explicit SkDeferredDisplayListPriv(SkDeferredDisplayList* ddl) : fDDL(ddl) {}
43 SkDeferredDisplayList* fDDL;
45 friend class SkDeferredDisplayList; // to construct/copy this type.
48 inline SkDeferredDisplayListPriv SkDeferredDisplayList::priv() {
52 inline const SkDeferredDisplayListPriv SkDeferredDisplayList::priv () const {
53 return SkDeferredDisplayListPriv(const_cast<SkDeferredDisplayList*>(this))
    [all...]
SkDeferredDisplayListRecorder.cpp 10 #include "SkDeferredDisplayList.h"
23 std::unique_ptr<SkDeferredDisplayList> SkDeferredDisplayListRecorder::detach() { return nullptr; }
105 fLazyProxyData = sk_sp<SkDeferredDisplayList::LazyProxyData>(
106 new SkDeferredDisplayList::LazyProxyData);
137 sk_sp<SkDeferredDisplayList::LazyProxyData> lazyProxyData = fLazyProxyData;
202 std::unique_ptr<SkDeferredDisplayList> SkDeferredDisplayListRecorder::detach() {
213 auto ddl = std::unique_ptr<SkDeferredDisplayList>(
214 new SkDeferredDisplayList(fCharacterization, std::move(fLazyProxyData)));
  /external/skqp/src/core/
SkDeferredDisplayList.cpp 8 #include "SkDeferredDisplayList.h"
13 SkDeferredDisplayList::SkDeferredDisplayList(const SkSurfaceCharacterization& characterization,
19 SkDeferredDisplayList::~SkDeferredDisplayList() {
SkDeferredDisplayListPriv.h 11 #include "SkDeferredDisplayList.h"
13 /** Class that adds methods to SkDeferredDisplayList that are only intended for use internal to Skia.
14 This class is purely a privileged window into SkDeferredDisplayList. It should never have
26 const SkDeferredDisplayList::LazyProxyData* lazyProxyData() const {
35 explicit SkDeferredDisplayListPriv(SkDeferredDisplayList* ddl) : fDDL(ddl) {}
43 SkDeferredDisplayList* fDDL;
45 friend class SkDeferredDisplayList; // to construct/copy this type.
48 inline SkDeferredDisplayListPriv SkDeferredDisplayList::priv() {
52 inline const SkDeferredDisplayListPriv SkDeferredDisplayList::priv () const {
53 return SkDeferredDisplayListPriv(const_cast<SkDeferredDisplayList*>(this))
    [all...]
SkDeferredDisplayListRecorder.cpp 10 #include "SkDeferredDisplayList.h"
23 std::unique_ptr<SkDeferredDisplayList> SkDeferredDisplayListRecorder::detach() { return nullptr; }
107 fLazyProxyData = sk_sp<SkDeferredDisplayList::LazyProxyData>(
108 new SkDeferredDisplayList::LazyProxyData);
127 sk_sp<SkDeferredDisplayList::LazyProxyData> lazyProxyData = fLazyProxyData;
191 std::unique_ptr<SkDeferredDisplayList> SkDeferredDisplayListRecorder::detach() {
202 auto ddl = std::unique_ptr<SkDeferredDisplayList>(
203 new SkDeferredDisplayList(fCharacterization, std::move(fLazyProxyData)));
  /external/skia/include/private/
SkDeferredDisplayList.h 24 * an SkSurface via draw(SkDeferredDisplayList*).
28 class SK_API SkDeferredDisplayList {
46 SkDeferredDisplayList(const SkSurfaceCharacterization& characterization,
48 ~SkDeferredDisplayList();
  /external/skqp/include/private/
SkDeferredDisplayList.h 24 * an SkSurface via draw(SkDeferredDisplayList*).
28 class SK_API SkDeferredDisplayList {
46 SkDeferredDisplayList(const SkSurfaceCharacterization& characterization,
48 ~SkDeferredDisplayList();
  /external/skqp/src/gpu/vk/
GrVkSecondaryCBDrawContext.h 18 class SkDeferredDisplayList;
96 bool draw(SkDeferredDisplayList* deferredDisplayList);
  /external/skia/src/gpu/vk/
GrVkSecondaryCBDrawContext.h 19 class SkDeferredDisplayList;
99 bool draw(SkDeferredDisplayList* deferredDisplayList);
GrVkSecondaryCBDrawContext.cpp 14 #include "SkDeferredDisplayList.h"
160 bool GrVkSecondaryCBDrawContext::draw(SkDeferredDisplayList* ddl) {
  /external/skia/tools/
DDLTileHelper.h 18 class SkDeferredDisplayList;
57 std::unique_ptr<SkDeferredDisplayList> fDisplayList;
  /external/skqp/tools/
DDLTileHelper.h 18 class SkDeferredDisplayList;
57 std::unique_ptr<SkDeferredDisplayList> fDisplayList;
  /external/skia/include/core/
SkDeferredDisplayListRecorder.h 11 #include "../private/SkDeferredDisplayList.h"
32 * Snap off and hold on to an SkDeferredDisplayList
33 * Once your app actually needs the pixels, call SkSurface::draw(SkDeferredDisplayList*)
53 std::unique_ptr<SkDeferredDisplayList> detach();
145 sk_sp<SkDeferredDisplayList::LazyProxyData> fLazyProxyData;
SkSurface.h 32 class SkDeferredDisplayList;
    [all...]
  /external/skia/src/gpu/
GrDrawingManager.h 30 class SkDeferredDisplayList;
89 void moveOpListsToDDL(SkDeferredDisplayList* ddl);
90 void copyOpListsFromDDL(const SkDeferredDisplayList*, GrRenderTargetProxy* newDest);
GrContextPriv.h 25 class SkDeferredDisplayList;
274 void moveOpListsToDDL(SkDeferredDisplayList*);
275 void copyOpListsFromDDL(const SkDeferredDisplayList*, GrRenderTargetProxy* newDest);
  /external/skqp/src/gpu/
GrDrawingManager.h 29 class SkDeferredDisplayList;
82 void moveOpListsToDDL(SkDeferredDisplayList* ddl);
83 void copyOpListsFromDDL(const SkDeferredDisplayList*, GrRenderTargetProxy* newDest);
GrContextPriv.h 24 class SkDeferredDisplayList;
214 void moveOpListsToDDL(SkDeferredDisplayList*);
215 void copyOpListsFromDDL(const SkDeferredDisplayList*, GrRenderTargetProxy* newDest);
  /external/skqp/include/core/
SkDeferredDisplayListRecorder.h 11 #include "../private/SkDeferredDisplayList.h"
32 * Snap off and hold on to an SkDeferredDisplayList
33 * Once your app actually needs the pixels, call SkSurface::draw(SkDeferredDisplayList*)
53 std::unique_ptr<SkDeferredDisplayList> detach();
205 sk_sp<SkDeferredDisplayList::LazyProxyData> fLazyProxyData;
SkSurface.h 28 class SkDeferredDisplayList;
    [all...]
  /external/skia/src/image/
SkSurface_Base.h 101 virtual bool onDraw(const SkDeferredDisplayList*) { return false; }
SkSurface_Gpu.h 43 bool onDraw(const SkDeferredDisplayList*) override;
  /external/skqp/src/image/
SkSurface_Base.h 98 virtual bool onDraw(const SkDeferredDisplayList*) { return false; }
SkSurface_Gpu.h 40 bool onDraw(const SkDeferredDisplayList*) override;

Completed in 815 milliseconds

1 2