| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef ANDROID_GRAPHIC_BUFFER_H |
| 18 | #define ANDROID_GRAPHIC_BUFFER_H |
| 19 | |
| 20 | #include <stdint.h> |
| 21 | #include <sys/types.h> |
| 22 | |
| Mathias Agopian | fe2f54f | 2017-02-15 19:48:58 -0800 | [diff] [blame] | 23 | #include <string> |
| 24 | |
| Mathias Agopian | 5f2165f | 2012-02-24 18:25:41 -0800 | [diff] [blame] | 25 | #include <ui/ANativeObjectBase.h> |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 26 | #include <ui/PixelFormat.h> |
| 27 | #include <ui/Rect.h> |
| Mathias Agopian | 98e71dd | 2010-02-11 17:30:52 -0800 | [diff] [blame] | 28 | #include <utils/Flattenable.h> |
| Mathias Agopian | e041716 | 2013-03-06 18:50:52 -0800 | [diff] [blame] | 29 | #include <utils/RefBase.h> |
| Mathias Agopian | 5f2165f | 2012-02-24 18:25:41 -0800 | [diff] [blame] | 30 | |
| Mathias Agopian | 6a3c05b | 2017-04-27 20:06:55 -0700 | [diff] [blame] | 31 | #include <nativebase/nativebase.h> |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 32 | |
| Mathias Agopian | 6a3c05b | 2017-04-27 20:06:55 -0700 | [diff] [blame] | 33 | #include <hardware/gralloc.h> |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 34 | |
| 35 | namespace android { |
| 36 | |
| Jiwen 'Steve' Cai | 2daf518 | 2018-10-16 00:14:03 -0700 | [diff] [blame] | 37 | #ifndef LIBUI_IN_VNDK |
| 38 | class BufferHubBuffer; |
| 39 | #endif // LIBUI_IN_VNDK |
| 40 | |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 41 | class GraphicBufferMapper; |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 42 | |
| 43 | // =========================================================================== |
| 44 | // GraphicBuffer |
| 45 | // =========================================================================== |
| 46 | |
| 47 | class GraphicBuffer |
| Mathias Agopian | 6a3c05b | 2017-04-27 20:06:55 -0700 | [diff] [blame] | 48 | : public ANativeObjectBase<ANativeWindowBuffer, GraphicBuffer, RefBase>, |
| Mathias Agopian | e142428 | 2013-07-29 21:24:40 -0700 | [diff] [blame] | 49 | public Flattenable<GraphicBuffer> |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 50 | { |
| Mathias Agopian | e142428 | 2013-07-29 21:24:40 -0700 | [diff] [blame] | 51 | friend class Flattenable<GraphicBuffer>; |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 52 | public: |
| 53 | |
| 54 | enum { |
| 55 | USAGE_SW_READ_NEVER = GRALLOC_USAGE_SW_READ_NEVER, |
| 56 | USAGE_SW_READ_RARELY = GRALLOC_USAGE_SW_READ_RARELY, |
| 57 | USAGE_SW_READ_OFTEN = GRALLOC_USAGE_SW_READ_OFTEN, |
| 58 | USAGE_SW_READ_MASK = GRALLOC_USAGE_SW_READ_MASK, |
| Dan Stoza | d318240 | 2014-11-17 12:03:59 -0800 | [diff] [blame] | 59 | |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 60 | USAGE_SW_WRITE_NEVER = GRALLOC_USAGE_SW_WRITE_NEVER, |
| 61 | USAGE_SW_WRITE_RARELY = GRALLOC_USAGE_SW_WRITE_RARELY, |
| 62 | USAGE_SW_WRITE_OFTEN = GRALLOC_USAGE_SW_WRITE_OFTEN, |
| 63 | USAGE_SW_WRITE_MASK = GRALLOC_USAGE_SW_WRITE_MASK, |
| Glenn Kasten | 16f0453 | 2011-01-19 15:27:27 -0800 | [diff] [blame] | 64 | |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 65 | USAGE_SOFTWARE_MASK = USAGE_SW_READ_MASK|USAGE_SW_WRITE_MASK, |
| Glenn Kasten | 16f0453 | 2011-01-19 15:27:27 -0800 | [diff] [blame] | 66 | |
| 67 | USAGE_PROTECTED = GRALLOC_USAGE_PROTECTED, |
| 68 | |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 69 | USAGE_HW_TEXTURE = GRALLOC_USAGE_HW_TEXTURE, |
| 70 | USAGE_HW_RENDER = GRALLOC_USAGE_HW_RENDER, |
| 71 | USAGE_HW_2D = GRALLOC_USAGE_HW_2D, |
| Jamie Gennis | 3599bf2 | 2011-08-10 11:48:07 -0700 | [diff] [blame] | 72 | USAGE_HW_COMPOSER = GRALLOC_USAGE_HW_COMPOSER, |
| Jamie Gennis | b7d87c4 | 2011-11-21 16:51:47 -0800 | [diff] [blame] | 73 | USAGE_HW_VIDEO_ENCODER = GRALLOC_USAGE_HW_VIDEO_ENCODER, |
| Riley Andrews | 03414a1 | 2014-07-01 14:22:59 -0700 | [diff] [blame] | 74 | USAGE_HW_MASK = GRALLOC_USAGE_HW_MASK, |
| 75 | |
| 76 | USAGE_CURSOR = GRALLOC_USAGE_CURSOR, |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 77 | }; |
| 78 | |
| Mathias Agopian | f543e5a | 2017-04-03 17:16:41 -0700 | [diff] [blame] | 79 | static sp<GraphicBuffer> from(ANativeWindowBuffer *); |
| 80 | |
| 81 | |
| Chia-I Wu | b42f171 | 2017-03-21 13:15:39 -0700 | [diff] [blame] | 82 | // Create a GraphicBuffer to be unflatten'ed into or be reallocated. |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 83 | GraphicBuffer(); |
| 84 | |
| Chia-I Wu | b42f171 | 2017-03-21 13:15:39 -0700 | [diff] [blame] | 85 | // Create a GraphicBuffer by allocating and managing a buffer internally. |
| 86 | // This function is privileged. See reallocate for details. |
| Craig Donner | e96a325 | 2017-02-02 12:13:34 -0800 | [diff] [blame] | 87 | GraphicBuffer(uint32_t inWidth, uint32_t inHeight, PixelFormat inFormat, |
| Chris Forbes | 82c0498 | 2017-04-19 14:29:54 -0700 | [diff] [blame] | 88 | uint32_t inLayerCount, uint64_t inUsage, |
| 89 | std::string requestorName = "<Unknown>"); |
| Craig Donner | e96a325 | 2017-02-02 12:13:34 -0800 | [diff] [blame] | 90 | |
| Chia-I Wu | b42f171 | 2017-03-21 13:15:39 -0700 | [diff] [blame] | 91 | // Create a GraphicBuffer from an existing handle. |
| 92 | enum HandleWrapMethod : uint8_t { |
| 93 | // Wrap and use the handle directly. It assumes the handle has been |
| 94 | // registered and never fails. The handle must have a longer lifetime |
| 95 | // than this wrapping GraphicBuffer. |
| 96 | // |
| 97 | // This can be used when, for example, you want to wrap a handle that |
| 98 | // is already managed by another GraphicBuffer. |
| 99 | WRAP_HANDLE, |
| 100 | |
| 101 | // Take ownership of the handle and use it directly. It assumes the |
| 102 | // handle has been registered and never fails. |
| 103 | // |
| 104 | // This can be used to manage an already registered handle with |
| 105 | // GraphicBuffer. |
| 106 | TAKE_HANDLE, |
| 107 | |
| 108 | // Take onwership of an unregistered handle and use it directly. It |
| 109 | // can fail when the buffer does not register. There is no ownership |
| 110 | // transfer on failures. |
| 111 | // |
| 112 | // This can be used to, for example, create a GraphicBuffer from a |
| 113 | // handle returned by Parcel::readNativeHandle. |
| 114 | TAKE_UNREGISTERED_HANDLE, |
| 115 | |
| 116 | // Make a clone of the handle and use the cloned handle. It can fail |
| 117 | // when cloning fails or when the buffer does not register. There is |
| 118 | // never ownership transfer. |
| 119 | // |
| 120 | // This can be used to create a GraphicBuffer from a handle that |
| 121 | // cannot be used directly, such as one from hidl_handle. |
| 122 | CLONE_HANDLE, |
| 123 | }; |
| Chih-Hung Hsieh | bcc6c92 | 2018-11-13 15:20:59 -0800 | [diff] [blame] | 124 | GraphicBuffer(const native_handle_t* inHandle, HandleWrapMethod method, uint32_t inWidth, |
| 125 | uint32_t inHeight, PixelFormat inFormat, uint32_t inLayerCount, uint64_t inUsage, |
| 126 | uint32_t inStride); |
| Chia-I Wu | b42f171 | 2017-03-21 13:15:39 -0700 | [diff] [blame] | 127 | |
| Chris Forbes | 82c0498 | 2017-04-19 14:29:54 -0700 | [diff] [blame] | 128 | // These functions are deprecated because they only take 32 bits of usage |
| Chih-Hung Hsieh | bcc6c92 | 2018-11-13 15:20:59 -0800 | [diff] [blame] | 129 | GraphicBuffer(const native_handle_t* inHandle, HandleWrapMethod method, uint32_t inWidth, |
| 130 | uint32_t inHeight, PixelFormat inFormat, uint32_t inLayerCount, uint32_t inUsage, |
| 131 | uint32_t inStride) |
| 132 | : GraphicBuffer(inHandle, method, inWidth, inHeight, inFormat, inLayerCount, |
| 133 | static_cast<uint64_t>(inUsage), inStride) {} |
| Dan Stoza | d318240 | 2014-11-17 12:03:59 -0800 | [diff] [blame] | 134 | GraphicBuffer(uint32_t inWidth, uint32_t inHeight, PixelFormat inFormat, |
| Craig Donner | 6ebc46a | 2016-10-21 15:23:44 -0700 | [diff] [blame] | 135 | uint32_t inLayerCount, uint32_t inUsage, uint32_t inStride, |
| 136 | native_handle_t* inHandle, bool keepOwnership); |
| Daniel Nicoara | 1c45710 | 2017-02-07 17:27:25 -0500 | [diff] [blame] | 137 | GraphicBuffer(uint32_t inWidth, uint32_t inHeight, PixelFormat inFormat, |
| Chia-I Wu | b42f171 | 2017-03-21 13:15:39 -0700 | [diff] [blame] | 138 | uint32_t inUsage, std::string requestorName = "<Unknown>"); |
| Daniel Nicoara | 1c45710 | 2017-02-07 17:27:25 -0500 | [diff] [blame] | 139 | |
| Jiwen 'Steve' Cai | 2daf518 | 2018-10-16 00:14:03 -0700 | [diff] [blame] | 140 | #ifndef LIBUI_IN_VNDK |
| 141 | // Create a GraphicBuffer from an existing BufferHubBuffer. |
| 142 | GraphicBuffer(std::unique_ptr<BufferHubBuffer> buffer); |
| 143 | #endif // LIBUI_IN_VNDK |
| 144 | |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 145 | // return status |
| 146 | status_t initCheck() const; |
| 147 | |
| Dan Stoza | d318240 | 2014-11-17 12:03:59 -0800 | [diff] [blame] | 148 | uint32_t getWidth() const { return static_cast<uint32_t>(width); } |
| 149 | uint32_t getHeight() const { return static_cast<uint32_t>(height); } |
| 150 | uint32_t getStride() const { return static_cast<uint32_t>(stride); } |
| Mathias Agopian | cb496ac | 2017-05-22 14:21:00 -0700 | [diff] [blame] | 151 | uint64_t getUsage() const { return usage; } |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 152 | PixelFormat getPixelFormat() const { return format; } |
| Craig Donner | 6ebc46a | 2016-10-21 15:23:44 -0700 | [diff] [blame] | 153 | uint32_t getLayerCount() const { return static_cast<uint32_t>(layerCount); } |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 154 | Rect getBounds() const { return Rect(width, height); } |
| Dan Stoza | b1363d3 | 2014-03-28 15:10:52 -0700 | [diff] [blame] | 155 | uint64_t getId() const { return mId; } |
| Jiwen 'Steve' Cai | 29160fb | 2018-12-13 12:03:28 -0800 | [diff] [blame] | 156 | int32_t getBufferId() const { return mBufferId; } |
| Dan Stoza | b1363d3 | 2014-03-28 15:10:52 -0700 | [diff] [blame] | 157 | |
| Dan Stoza | 812ed06 | 2015-06-02 15:45:22 -0700 | [diff] [blame] | 158 | uint32_t getGenerationNumber() const { return mGenerationNumber; } |
| 159 | void setGenerationNumber(uint32_t generation) { |
| 160 | mGenerationNumber = generation; |
| 161 | } |
| 162 | |
| Chia-I Wu | b42f171 | 2017-03-21 13:15:39 -0700 | [diff] [blame] | 163 | // This function is privileged. It requires access to the allocator |
| 164 | // device or service, which usually involves adding suitable selinux |
| 165 | // rules. |
| Dan Stoza | d318240 | 2014-11-17 12:03:59 -0800 | [diff] [blame] | 166 | status_t reallocate(uint32_t inWidth, uint32_t inHeight, |
| Chris Forbes | 82c0498 | 2017-04-19 14:29:54 -0700 | [diff] [blame] | 167 | PixelFormat inFormat, uint32_t inLayerCount, uint64_t inUsage); |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 168 | |
| Dan Stoza | 9de7293 | 2015-04-16 17:28:43 -0700 | [diff] [blame] | 169 | bool needsReallocation(uint32_t inWidth, uint32_t inHeight, |
| Chris Forbes | 82c0498 | 2017-04-19 14:29:54 -0700 | [diff] [blame] | 170 | PixelFormat inFormat, uint32_t inLayerCount, uint64_t inUsage); |
| Dan Stoza | 9de7293 | 2015-04-16 17:28:43 -0700 | [diff] [blame] | 171 | |
| Valerie Hau | 250c654 | 2019-01-31 14:23:43 -0800 | [diff] [blame] | 172 | // For the following two lock functions, if bytesPerStride or bytesPerPixel |
| 173 | // are unknown or variable, -1 will be returned |
| 174 | status_t lock(uint32_t inUsage, void** vaddr, int32_t* outBytesPerPixel = nullptr, |
| 175 | int32_t* outBytesPerStride = nullptr); |
| 176 | status_t lock(uint32_t inUsage, const Rect& rect, void** vaddr, |
| 177 | int32_t* outBytesPerPixel = nullptr, int32_t* outBytesPerStride = nullptr); |
| Eino-Ville Talvala | c43946b | 2013-05-04 18:07:43 -0700 | [diff] [blame] | 178 | // For HAL_PIXEL_FORMAT_YCbCr_420_888 |
| Dan Stoza | d318240 | 2014-11-17 12:03:59 -0800 | [diff] [blame] | 179 | status_t lockYCbCr(uint32_t inUsage, android_ycbcr *ycbcr); |
| 180 | status_t lockYCbCr(uint32_t inUsage, const Rect& rect, |
| 181 | android_ycbcr *ycbcr); |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 182 | status_t unlock(); |
| Valerie Hau | b94adfd | 2019-02-07 14:25:12 -0800 | [diff] [blame^] | 183 | // For the following three lockAsync functions, if bytesPerStride or bytesPerPixel |
| 184 | // are unknown or variable, -1 will be returned |
| 185 | status_t lockAsync(uint32_t inUsage, void** vaddr, int fenceFd, |
| 186 | int32_t* outBytesPerPixel = nullptr, int32_t* outBytesPerStride = nullptr); |
| 187 | status_t lockAsync(uint32_t inUsage, const Rect& rect, void** vaddr, int fenceFd, |
| 188 | int32_t* outBytesPerPixel = nullptr, int32_t* outBytesPerStride = nullptr); |
| 189 | status_t lockAsync(uint64_t inProducerUsage, uint64_t inConsumerUsage, const Rect& rect, |
| 190 | void** vaddr, int fenceFd, int32_t* outBytesPerPixel = nullptr, |
| 191 | int32_t* outBytesPerStride = nullptr); |
| Dan Stoza | d318240 | 2014-11-17 12:03:59 -0800 | [diff] [blame] | 192 | status_t lockAsyncYCbCr(uint32_t inUsage, android_ycbcr *ycbcr, |
| 193 | int fenceFd); |
| 194 | status_t lockAsyncYCbCr(uint32_t inUsage, const Rect& rect, |
| 195 | android_ycbcr *ycbcr, int fenceFd); |
| Francis Hart | 8f39601 | 2014-04-01 15:30:53 +0300 | [diff] [blame] | 196 | status_t unlockAsync(int *fenceFd); |
| Mathias Agopian | 678bdd6 | 2010-12-03 17:33:09 -0800 | [diff] [blame] | 197 | |
| Valerie Hau | ddbfaeb | 2019-02-01 09:54:20 -0800 | [diff] [blame] | 198 | status_t isSupported(uint32_t inWidth, uint32_t inHeight, PixelFormat inFormat, |
| 199 | uint32_t inLayerCount, uint64_t inUsage, bool* outSupported) const; |
| 200 | |
| Iliyan Malchev | 697526b | 2011-05-01 11:33:26 -0700 | [diff] [blame] | 201 | ANativeWindowBuffer* getNativeBuffer() const; |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 202 | |
| Mathias Agopian | 678bdd6 | 2010-12-03 17:33:09 -0800 | [diff] [blame] | 203 | // for debugging |
| 204 | static void dumpAllocationsToSystemLog(); |
| 205 | |
| Mathias Agopian | 87f9b87 | 2013-07-31 19:18:22 -0700 | [diff] [blame] | 206 | // Flattenable protocol |
| 207 | size_t getFlattenedSize() const; |
| 208 | size_t getFdCount() const; |
| 209 | status_t flatten(void*& buffer, size_t& size, int*& fds, size_t& count) const; |
| 210 | status_t unflatten(void const*& buffer, size_t& size, int const*& fds, size_t& count); |
| 211 | |
| Jiwen 'Steve' Cai | 2daf518 | 2018-10-16 00:14:03 -0700 | [diff] [blame] | 212 | #ifndef LIBUI_IN_VNDK |
| 213 | // Returns whether this GraphicBuffer is backed by BufferHubBuffer. |
| 214 | bool isBufferHubBuffer() const; |
| 215 | #endif // LIBUI_IN_VNDK |
| 216 | |
| Mathias Agopian | b7e930d | 2010-06-01 15:12:58 -0700 | [diff] [blame] | 217 | private: |
| Mathias Agopian | e142428 | 2013-07-29 21:24:40 -0700 | [diff] [blame] | 218 | ~GraphicBuffer(); |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 219 | |
| Mathias Agopian | 54ba51d | 2009-10-26 20:12:37 -0700 | [diff] [blame] | 220 | enum { |
| 221 | ownNone = 0, |
| 222 | ownHandle = 1, |
| 223 | ownData = 2, |
| 224 | }; |
| 225 | |
| Mathias Agopian | b7e930d | 2010-06-01 15:12:58 -0700 | [diff] [blame] | 226 | inline const GraphicBufferMapper& getBufferMapper() const { |
| 227 | return mBufferMapper; |
| 228 | } |
| 229 | inline GraphicBufferMapper& getBufferMapper() { |
| 230 | return mBufferMapper; |
| 231 | } |
| Mathias Agopian | 54ba51d | 2009-10-26 20:12:37 -0700 | [diff] [blame] | 232 | uint8_t mOwner; |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 233 | |
| 234 | private: |
| 235 | friend class Surface; |
| 236 | friend class BpSurface; |
| 237 | friend class BnSurface; |
| 238 | friend class LightRefBase<GraphicBuffer>; |
| 239 | GraphicBuffer(const GraphicBuffer& rhs); |
| 240 | GraphicBuffer& operator = (const GraphicBuffer& rhs); |
| 241 | const GraphicBuffer& operator = (const GraphicBuffer& rhs) const; |
| 242 | |
| Chia-I Wu | b42f171 | 2017-03-21 13:15:39 -0700 | [diff] [blame] | 243 | status_t initWithSize(uint32_t inWidth, uint32_t inHeight, |
| 244 | PixelFormat inFormat, uint32_t inLayerCount, |
| Chris Forbes | 82c0498 | 2017-04-19 14:29:54 -0700 | [diff] [blame] | 245 | uint64_t inUsage, std::string requestorName); |
| Chia-I Wu | b42f171 | 2017-03-21 13:15:39 -0700 | [diff] [blame] | 246 | |
| Chih-Hung Hsieh | bcc6c92 | 2018-11-13 15:20:59 -0800 | [diff] [blame] | 247 | status_t initWithHandle(const native_handle_t* inHandle, HandleWrapMethod method, |
| 248 | uint32_t inWidth, uint32_t inHeight, PixelFormat inFormat, |
| 249 | uint32_t inLayerCount, uint64_t inUsage, uint32_t inStride); |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 250 | |
| Mathias Agopian | 98e71dd | 2010-02-11 17:30:52 -0800 | [diff] [blame] | 251 | void free_handle(); |
| 252 | |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 253 | GraphicBufferMapper& mBufferMapper; |
| 254 | ssize_t mInitCheck; |
| Jamie Gennis | 309d3bb | 2010-10-07 13:46:55 -0700 | [diff] [blame] | 255 | |
| Chia-I Wu | dbbe33b | 2017-09-27 15:22:21 -0700 | [diff] [blame] | 256 | // numbers of fds/ints in native_handle_t to flatten |
| 257 | uint32_t mTransportNumFds; |
| 258 | uint32_t mTransportNumInts; |
| 259 | |
| Dan Stoza | b1363d3 | 2014-03-28 15:10:52 -0700 | [diff] [blame] | 260 | uint64_t mId; |
| Dan Stoza | 812ed06 | 2015-06-02 15:45:22 -0700 | [diff] [blame] | 261 | |
| Jiwen 'Steve' Cai | 29160fb | 2018-12-13 12:03:28 -0800 | [diff] [blame] | 262 | // System unique buffer ID. Note that this is different from mId, which is process unique. For |
| 263 | // GraphicBuffer backed by BufferHub, the mBufferId is a system unique identifier that stays the |
| 264 | // same cross process for the same chunck of underlying memory. Also note that this only applies |
| 265 | // to GraphicBuffers that are backed by BufferHub. |
| 266 | int32_t mBufferId = -1; |
| 267 | |
| Dan Stoza | 812ed06 | 2015-06-02 15:45:22 -0700 | [diff] [blame] | 268 | // Stores the generation number of this buffer. If this number does not |
| 269 | // match the BufferQueue's internal generation number (set through |
| 270 | // IGBP::setGenerationNumber), attempts to attach the buffer will fail. |
| 271 | uint32_t mGenerationNumber; |
| Jiwen 'Steve' Cai | 2daf518 | 2018-10-16 00:14:03 -0700 | [diff] [blame] | 272 | |
| 273 | #ifndef LIBUI_IN_VNDK |
| 274 | // Stores a BufferHubBuffer that handles buffer signaling, identification. |
| 275 | std::unique_ptr<BufferHubBuffer> mBufferHubBuffer; |
| 276 | #endif // LIBUI_IN_VNDK |
| Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 277 | }; |
| 278 | |
| 279 | }; // namespace android |
| 280 | |
| 281 | #endif // ANDROID_GRAPHIC_BUFFER_H |