Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
SkAutoPixmapStorage.h
Go to the documentation of this file.
1/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkAutoPixmapStorage_DEFINED
9#define SkAutoPixmapStorage_DEFINED
10
14
15#include <cstddef>
16
17class SkData;
18struct SkImageInfo;
19struct SkMask;
20
22public:
25
27
28 /**
29 * Leave the moved-from object in a free-but-valid state.
30 */
32
33 /**
34 * Try to allocate memory for the pixels needed to match the specified Info. On success
35 * return true and fill out the pixmap to point to that memory. The storage will be freed
36 * when this object is destroyed, or if another call to tryAlloc() or alloc() is made.
37 *
38 * On failure, return false and reset() the pixmap to empty.
39 */
40 bool tryAlloc(const SkImageInfo&);
41
42 /**
43 * Allocate memory for the pixels needed to match the specified Info and fill out the pixmap
44 * to point to that memory. The storage will be freed when this object is destroyed,
45 * or if another call to tryAlloc() or alloc() is made.
46 *
47 * If the memory cannot be allocated, calls SK_ABORT().
48 */
49 void alloc(const SkImageInfo&);
50
51 /**
52 * Gets the size and optionally the rowBytes that would be allocated by SkAutoPixmapStorage if
53 * alloc/tryAlloc was called.
54 */
55 static size_t AllocSize(const SkImageInfo& info, size_t* rowBytes);
56
57 /**
58 * Returns a void* of the allocated pixel memory and resets the pixmap. If the storage hasn't
59 * been allocated, the result is NULL. The caller is responsible for calling sk_free to free
60 * the returned memory.
61 */
62 [[nodiscard]] void* detachPixels();
63
64 /**
65 * Returns an SkData object wrapping the allocated pixels memory, and resets the pixmap.
66 * If the storage hasn't been allocated, the result is NULL.
67 */
68 [[nodiscard]] sk_sp<SkData> detachPixelsAsData();
69
70 // We wrap these so we can clear our internal storage
71
72 void reset() {
73 this->freeStorage();
74 this->INHERITED::reset();
75 }
76 void reset(const SkImageInfo& info, const void* addr, size_t rb) {
77 this->freeStorage();
78 this->INHERITED::reset(info, addr, rb);
79 }
80
81 [[nodiscard]] bool reset(const SkMask& mask) {
82 this->freeStorage();
83 return this->INHERITED::reset(mask);
84 }
85
86private:
87 void* fStorage;
88
89 void freeStorage() {
90 sk_free(fStorage);
91 fStorage = nullptr;
92 }
93
94 using INHERITED = SkPixmap;
95};
96
97#endif
SK_API void sk_free(void *)
bool reset(const SkMask &mask)
static size_t AllocSize(const SkImageInfo &info, size_t *rowBytes)
bool tryAlloc(const SkImageInfo &)
void alloc(const SkImageInfo &)
SkAutoPixmapStorage & operator=(SkAutoPixmapStorage &&other)
void reset(const SkImageInfo &info, const void *addr, size_t rb)
sk_sp< SkData > detachPixelsAsData()
size_t rowBytes() const
Definition SkPixmap.h:145
SkPixmap()
Definition SkPixmap.h:50
const SkImageInfo & info() const
Definition SkPixmap.h:135
const void * addr() const
Definition SkPixmap.h:153
void reset()
Definition SkPixmap.cpp:32