Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 1 | /* |
Tharaga Balachandran | 74ab111 | 2020-01-08 17:17:56 -0500 | [diff] [blame] | 2 | * Copyright (c) 2018-2020 The Linux Foundation. All rights reserved. |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions are |
| 6 | * met: |
| 7 | * * Redistributions of source code must retain the above copyright |
| 8 | * notice, this list of conditions and the following disclaimer. |
| 9 | * * Redistributions in binary form must reproduce the above |
| 10 | * copyright notice, this list of conditions and the following |
| 11 | * disclaimer in the documentation and/or other materials provided |
| 12 | * with the distribution. |
| 13 | * * Neither the name of The Linux Foundation nor the names of its |
| 14 | * contributors may be used to endorse or promote products derived |
| 15 | * from this software without specific prior written permission. |
| 16 | * |
| 17 | * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED |
| 18 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 19 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT |
| 20 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS |
| 21 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 22 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 23 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 24 | * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 25 | * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE |
| 26 | * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
| 27 | * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 | */ |
| 29 | |
| 30 | #define ATRACE_TAG (ATRACE_TAG_GRAPHICS | ATRACE_TAG_HAL) |
| 31 | #define DEBUG 0 |
| 32 | #include "QtiMapper.h" |
| 33 | #include <cutils/trace.h> |
| 34 | #include <qdMetaData.h> |
| 35 | #include <sync/sync.h> |
| 36 | #include "gr_utils.h" |
| 37 | |
| 38 | namespace vendor { |
| 39 | namespace qti { |
| 40 | namespace hardware { |
| 41 | namespace display { |
| 42 | namespace mapper { |
Tharaga Balachandran | 74ab111 | 2020-01-08 17:17:56 -0500 | [diff] [blame] | 43 | namespace V3_0 { |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 44 | namespace implementation { |
| 45 | |
| 46 | using gralloc::BufferInfo; |
| 47 | |
| 48 | QtiMapper::QtiMapper() { |
Tharaga Balachandran | f7e62a3 | 2019-06-06 11:33:29 -0400 | [diff] [blame] | 49 | extensions_ = new QtiMapperExtensions(); |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 50 | buf_mgr_ = BufferManager::GetInstance(); |
| 51 | ALOGD_IF(DEBUG, "Created QtiMapper instance"); |
| 52 | } |
| 53 | |
Tharaga Balachandran | ab150ab | 2019-09-26 19:17:58 -0400 | [diff] [blame] | 54 | bool QtiMapper::ValidDescriptor(const BufferDescriptorInfo_3_0 &bd) { |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 55 | if (bd.width == 0 || bd.height == 0 || (static_cast<int32_t>(bd.format) <= 0) || |
Ramakant Singh | 8f929ff | 2018-04-26 19:53:50 +0530 | [diff] [blame] | 56 | bd.layerCount <= 0) { |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 57 | return false; |
| 58 | } |
| 59 | |
| 60 | return true; |
| 61 | } |
| 62 | |
Tharaga Balachandran | ab150ab | 2019-09-26 19:17:58 -0400 | [diff] [blame] | 63 | Error QtiMapper::CreateDescriptor(const BufferDescriptorInfo_3_0 &descriptor_info, |
Naseer Ahmed | 920d71b | 2018-03-08 16:54:28 -0500 | [diff] [blame] | 64 | IMapperBufferDescriptor *descriptor) { |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 65 | ALOGD_IF(DEBUG, |
| 66 | "BufferDescriptorInfo: wxh: %dx%d usage: 0x%" PRIu64 " format: %d layer_count: %d", |
| 67 | descriptor_info.width, descriptor_info.height, descriptor_info.usage, |
| 68 | static_cast<uint32_t>(descriptor_info.format), descriptor_info.layerCount); |
| 69 | |
| 70 | if (ValidDescriptor(descriptor_info)) { |
Tharaga Balachandran | 74ab111 | 2020-01-08 17:17:56 -0500 | [diff] [blame] | 71 | auto vec = Encode(descriptor_info); |
Naseer Ahmed | 920d71b | 2018-03-08 16:54:28 -0500 | [diff] [blame] | 72 | *descriptor = vec; |
| 73 | return Error::NONE; |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 74 | } else { |
Naseer Ahmed | 920d71b | 2018-03-08 16:54:28 -0500 | [diff] [blame] | 75 | return Error::BAD_VALUE; |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 76 | } |
Naseer Ahmed | 920d71b | 2018-03-08 16:54:28 -0500 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | // Methods from ::android::hardware::graphics::mapper::V2_0::IMapper follow. |
Tharaga Balachandran | ab150ab | 2019-09-26 19:17:58 -0400 | [diff] [blame] | 80 | Return<void> QtiMapper::createDescriptor(const BufferDescriptorInfo_3_0 &descriptor_info, |
Naseer Ahmed | 920d71b | 2018-03-08 16:54:28 -0500 | [diff] [blame] | 81 | createDescriptor_cb hidl_cb) { |
| 82 | IMapperBufferDescriptor descriptor; |
Tharaga Balachandran | ab150ab | 2019-09-26 19:17:58 -0400 | [diff] [blame] | 83 | auto info_3_0 = BufferDescriptorInfo_3_0{ |
Naseer Ahmed | 920d71b | 2018-03-08 16:54:28 -0500 | [diff] [blame] | 84 | descriptor_info.width, |
| 85 | descriptor_info.height, |
| 86 | descriptor_info.layerCount, |
| 87 | static_cast<PixelFormat>(descriptor_info.format), |
| 88 | descriptor_info.usage, |
| 89 | }; |
Tharaga Balachandran | ab150ab | 2019-09-26 19:17:58 -0400 | [diff] [blame] | 90 | auto err = CreateDescriptor(info_3_0, &descriptor); |
Naseer Ahmed | 920d71b | 2018-03-08 16:54:28 -0500 | [diff] [blame] | 91 | hidl_cb(err, descriptor); |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 92 | return Void(); |
| 93 | } |
| 94 | |
| 95 | Return<void> QtiMapper::importBuffer(const hidl_handle &raw_handle, importBuffer_cb hidl_cb) { |
| 96 | if (!raw_handle.getNativeHandle()) { |
| 97 | ALOGE("%s: Unable to import handle", __FUNCTION__); |
| 98 | hidl_cb(Error::BAD_BUFFER, nullptr); |
| 99 | return Void(); |
| 100 | } |
| 101 | |
| 102 | native_handle_t *buffer_handle = native_handle_clone(raw_handle.getNativeHandle()); |
| 103 | if (!buffer_handle) { |
| 104 | ALOGE("%s: Unable to clone handle", __FUNCTION__); |
| 105 | hidl_cb(Error::NO_RESOURCES, nullptr); |
| 106 | return Void(); |
| 107 | } |
| 108 | |
Tharaga Balachandran | 74ab111 | 2020-01-08 17:17:56 -0500 | [diff] [blame] | 109 | auto error = |
| 110 | static_cast<IMapper_3_0_Error>(buf_mgr_->RetainBuffer(PRIV_HANDLE_CONST(buffer_handle))); |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 111 | if (error != Error::NONE) { |
| 112 | ALOGE("%s: Unable to retain handle: %p", __FUNCTION__, buffer_handle); |
| 113 | native_handle_close(buffer_handle); |
| 114 | native_handle_delete(buffer_handle); |
| 115 | |
| 116 | hidl_cb(error, nullptr); |
| 117 | return Void(); |
| 118 | } |
| 119 | ALOGD_IF(DEBUG, "Imported handle: %p id: %" PRIu64, buffer_handle, |
| 120 | PRIV_HANDLE_CONST(buffer_handle)->id); |
| 121 | hidl_cb(Error::NONE, buffer_handle); |
| 122 | return Void(); |
| 123 | } |
| 124 | |
| 125 | Return<Error> QtiMapper::freeBuffer(void *buffer) { |
| 126 | if (!buffer) { |
| 127 | return Error::BAD_BUFFER; |
| 128 | } |
Tharaga Balachandran | 74ab111 | 2020-01-08 17:17:56 -0500 | [diff] [blame] | 129 | return static_cast<IMapper_3_0_Error>(buf_mgr_->ReleaseBuffer(PRIV_HANDLE_CONST(buffer))); |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | bool QtiMapper::GetFenceFd(const hidl_handle &fence_handle, int *outFenceFd) { |
| 133 | auto handle = fence_handle.getNativeHandle(); |
| 134 | if (handle && handle->numFds > 1) { |
| 135 | ALOGE("invalid fence handle with %d fds", handle->numFds); |
| 136 | return false; |
| 137 | } |
| 138 | |
| 139 | *outFenceFd = (handle && handle->numFds == 1) ? handle->data[0] : -1; |
| 140 | return true; |
| 141 | } |
| 142 | |
| 143 | void QtiMapper::WaitFenceFd(int fence_fd) { |
| 144 | if (fence_fd < 0) { |
| 145 | return; |
| 146 | } |
| 147 | |
| 148 | const int timeout = 3000; |
| 149 | ATRACE_BEGIN("fence wait"); |
| 150 | const int error = sync_wait(fence_fd, timeout); |
| 151 | ATRACE_END(); |
| 152 | if (error < 0) { |
| 153 | ALOGE("QtiMapper: lock fence %d didn't signal in %u ms - error: %s", fence_fd, timeout, |
| 154 | strerror(errno)); |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | Error QtiMapper::LockBuffer(void *buffer, uint64_t usage, const hidl_handle &acquire_fence) { |
| 159 | if (!buffer) { |
| 160 | return Error::BAD_BUFFER; |
| 161 | } |
| 162 | |
| 163 | int fence_fd; |
| 164 | if (!GetFenceFd(acquire_fence, &fence_fd)) { |
| 165 | return Error::BAD_VALUE; |
| 166 | } |
| 167 | |
| 168 | if (fence_fd > 0) { |
| 169 | WaitFenceFd(fence_fd); |
| 170 | } |
| 171 | |
| 172 | auto hnd = PRIV_HANDLE_CONST(buffer); |
| 173 | |
Tharaga Balachandran | 74ab111 | 2020-01-08 17:17:56 -0500 | [diff] [blame] | 174 | return static_cast<IMapper_3_0_Error>(buf_mgr_->LockBuffer(hnd, usage)); |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | Return<void> QtiMapper::lock(void *buffer, uint64_t cpu_usage, |
| 178 | const IMapper::Rect & /*access_region*/, |
| 179 | const hidl_handle &acquire_fence, lock_cb hidl_cb) { |
| 180 | auto err = LockBuffer(buffer, cpu_usage, acquire_fence); |
| 181 | if (err != Error::NONE) { |
Tharaga Balachandran | ab150ab | 2019-09-26 19:17:58 -0400 | [diff] [blame] | 182 | hidl_cb(err, nullptr, -1, -1); |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 183 | return Void(); |
| 184 | } |
| 185 | |
| 186 | auto hnd = PRIV_HANDLE_CONST(buffer); |
| 187 | auto *out_data = reinterpret_cast<void *>(hnd->base); |
Tharaga Balachandran | ab150ab | 2019-09-26 19:17:58 -0400 | [diff] [blame] | 188 | hidl_cb(err, out_data, gralloc::GetBpp(hnd->format), hnd->width); |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 189 | return Void(); |
| 190 | } |
| 191 | |
| 192 | Return<void> QtiMapper::lockYCbCr(void *buffer, uint64_t cpu_usage, |
| 193 | const IMapper::Rect & /*access_region*/, |
| 194 | const hidl_handle &acquire_fence, lockYCbCr_cb hidl_cb) { |
| 195 | YCbCrLayout layout = {}; |
| 196 | auto err = LockBuffer(buffer, cpu_usage, acquire_fence); |
| 197 | if (err != Error::NONE) { |
| 198 | hidl_cb(err, layout); |
| 199 | return Void(); |
| 200 | } |
| 201 | |
| 202 | auto hnd = PRIV_HANDLE_CONST(buffer); |
| 203 | android_ycbcr yuv_plane_info[2]; |
| 204 | if (gralloc::GetYUVPlaneInfo(hnd, yuv_plane_info) != 0) { |
| 205 | hidl_cb(Error::BAD_VALUE, layout); |
| 206 | } |
| 207 | layout.y = yuv_plane_info[0].y; |
| 208 | layout.cr = yuv_plane_info[0].cr; |
| 209 | layout.cb = yuv_plane_info[0].cb; |
| 210 | layout.yStride = static_cast<uint32_t>(yuv_plane_info[0].ystride); |
| 211 | layout.cStride = static_cast<uint32_t>(yuv_plane_info[0].cstride); |
| 212 | layout.chromaStep = static_cast<uint32_t>(yuv_plane_info[0].chroma_step); |
| 213 | hidl_cb(Error::NONE, layout); |
| 214 | return Void(); |
| 215 | } |
| 216 | |
| 217 | Return<void> QtiMapper::unlock(void *buffer, unlock_cb hidl_cb) { |
| 218 | auto err = Error::BAD_BUFFER; |
| 219 | if (buffer != nullptr) { |
Tharaga Balachandran | 74ab111 | 2020-01-08 17:17:56 -0500 | [diff] [blame] | 220 | err = static_cast<IMapper_3_0_Error>(buf_mgr_->UnlockBuffer(PRIV_HANDLE_CONST(buffer))); |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 221 | } |
| 222 | // We don't have a release fence |
| 223 | hidl_cb(err, hidl_handle(nullptr)); |
| 224 | return Void(); |
| 225 | } |
| 226 | |
Tharaga Balachandran | ab150ab | 2019-09-26 19:17:58 -0400 | [diff] [blame] | 227 | Return<Error> QtiMapper::validateBufferSize(void *buffer, |
| 228 | const BufferDescriptorInfo_3_0 &descriptor_info, |
Naseer Ahmed | 920d71b | 2018-03-08 16:54:28 -0500 | [diff] [blame] | 229 | uint32_t /*stride*/) { |
| 230 | auto err = Error::BAD_BUFFER; |
| 231 | auto hnd = static_cast<private_handle_t *>(buffer); |
| 232 | if (buffer != nullptr && private_handle_t::validate(hnd) == 0) { |
Tharaga Balachandran | 74ab111 | 2020-01-08 17:17:56 -0500 | [diff] [blame] | 233 | if (static_cast<IMapper_3_0_Error>(buf_mgr_->IsBufferImported(hnd)) != Error::NONE) { |
Naseer Ahmed | 920d71b | 2018-03-08 16:54:28 -0500 | [diff] [blame] | 234 | return Error::BAD_BUFFER; |
| 235 | } |
| 236 | auto info = gralloc::BufferInfo(descriptor_info.width, descriptor_info.height, |
| 237 | static_cast<uint32_t>(descriptor_info.format), |
| 238 | static_cast<uint64_t>(descriptor_info.usage)); |
| 239 | info.layer_count = descriptor_info.layerCount; |
Tharaga Balachandran | 74ab111 | 2020-01-08 17:17:56 -0500 | [diff] [blame] | 240 | err = static_cast<IMapper_3_0_Error>(buf_mgr_->ValidateBufferSize(hnd, info)); |
Naseer Ahmed | 920d71b | 2018-03-08 16:54:28 -0500 | [diff] [blame] | 241 | } |
| 242 | return err; |
| 243 | } |
| 244 | |
Tharaga Balachandran | ab150ab | 2019-09-26 19:17:58 -0400 | [diff] [blame] | 245 | Return<void> QtiMapper::getTransportSize(void *buffer, IMapper_3_0::getTransportSize_cb hidl_cb) { |
Naseer Ahmed | 920d71b | 2018-03-08 16:54:28 -0500 | [diff] [blame] | 246 | auto err = Error::BAD_BUFFER; |
| 247 | auto hnd = static_cast<private_handle_t *>(buffer); |
| 248 | uint32_t num_fds = 0, num_ints = 0; |
| 249 | if (buffer != nullptr && private_handle_t::validate(hnd) == 0) { |
Tharaga Balachandran | 74ab111 | 2020-01-08 17:17:56 -0500 | [diff] [blame] | 250 | if (static_cast<IMapper_3_0_Error>(buf_mgr_->IsBufferImported(hnd)) != Error::NONE) { |
Baldev Sahu | dd19513 | 2019-08-02 11:15:47 -0400 | [diff] [blame] | 251 | hidl_cb(err, num_fds, num_ints); |
| 252 | return Void(); |
| 253 | } |
Naseer Ahmed | 920d71b | 2018-03-08 16:54:28 -0500 | [diff] [blame] | 254 | num_fds = 2; |
| 255 | // TODO(user): reduce to transported values; |
| 256 | num_ints = static_cast<uint32_t >(hnd->numInts); |
| 257 | err = Error::NONE; |
| 258 | } |
| 259 | ALOGD_IF(DEBUG, "GetTransportSize: num fds: %d num ints: %d err:%d", num_fds, num_ints, err); |
| 260 | hidl_cb(err, num_fds, num_ints); |
| 261 | return Void(); |
| 262 | } |
| 263 | |
Tharaga Balachandran | ab150ab | 2019-09-26 19:17:58 -0400 | [diff] [blame] | 264 | Return<void> QtiMapper::isSupported(const BufferDescriptorInfo_3_0 &descriptor_info, |
| 265 | IMapper_3_0::isSupported_cb hidl_cb) { |
Naseer Ahmed | 920d71b | 2018-03-08 16:54:28 -0500 | [diff] [blame] | 266 | IMapperBufferDescriptor descriptor; |
| 267 | auto err = CreateDescriptor(descriptor_info, &descriptor); |
Tharaga Balachandran | ab150ab | 2019-09-26 19:17:58 -0400 | [diff] [blame] | 268 | if (err != Error::NONE) { |
| 269 | hidl_cb(err, false); |
| 270 | return Void(); |
| 271 | } |
| 272 | |
| 273 | gralloc::BufferDescriptor desc; |
Tharaga Balachandran | 74ab111 | 2020-01-08 17:17:56 -0500 | [diff] [blame] | 274 | err = static_cast<IMapper_3_0_Error>(Decode(descriptor, &desc)); |
Tharaga Balachandran | ab150ab | 2019-09-26 19:17:58 -0400 | [diff] [blame] | 275 | if (err != Error::NONE) { |
| 276 | hidl_cb(err, false); |
| 277 | return Void(); |
| 278 | } |
| 279 | |
| 280 | buffer_handle_t buffer; |
Tharaga Balachandran | 74ab111 | 2020-01-08 17:17:56 -0500 | [diff] [blame] | 281 | err = static_cast<IMapper_3_0_Error>(buf_mgr_->AllocateBuffer(desc, &buffer, 0, true)); |
Tharaga Balachandran | ab150ab | 2019-09-26 19:17:58 -0400 | [diff] [blame] | 282 | if (err != Error::NONE) { |
| 283 | hidl_cb(err, false); |
| 284 | } else { |
| 285 | hidl_cb(err, true); |
| 286 | } |
| 287 | |
Naseer Ahmed | 920d71b | 2018-03-08 16:54:28 -0500 | [diff] [blame] | 288 | return Void(); |
| 289 | } |
| 290 | |
Tharaga Balachandran | f7e62a3 | 2019-06-06 11:33:29 -0400 | [diff] [blame] | 291 | Return<void> QtiMapper::getMapperExtensions(QtiMapper::getMapperExtensions_cb hidl_cb) { |
| 292 | if (extensions_ != nullptr) { |
| 293 | hidl_cb(Error::NONE, extensions_); |
| 294 | } else { |
| 295 | hidl_cb(Error::UNSUPPORTED, extensions_); |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 296 | } |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 297 | return Void(); |
| 298 | } |
| 299 | |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 300 | // Methods from ::android::hidl::base::V1_0::IBase follow. |
| 301 | |
| 302 | // When we are in passthrough mode, this method is used |
| 303 | // by hidl to obtain the SP HAL object |
Tharaga Balachandran | 74ab111 | 2020-01-08 17:17:56 -0500 | [diff] [blame] | 304 | extern "C" IMapper_3_0 *HIDL_FETCH_IMapper(const char * /* name */) { |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 305 | ALOGD_IF(DEBUG, "Fetching IMapper from QtiMapper"); |
| 306 | auto mapper = new QtiMapper(); |
Tharaga Balachandran | ab150ab | 2019-09-26 19:17:58 -0400 | [diff] [blame] | 307 | return static_cast<IMapper_3_0 *>(mapper); |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 308 | } |
| 309 | |
Tharaga Balachandran | 74ab111 | 2020-01-08 17:17:56 -0500 | [diff] [blame] | 310 | extern "C" IQtiMapper *HIDL_FETCH_IQtiMapper(const char * /* name */) { |
Ashish Kumar | f04c3de | 2018-08-01 14:45:14 +0530 | [diff] [blame] | 311 | ALOGD_IF(DEBUG, "Fetching QtiMapper"); |
| 312 | return new QtiMapper(); |
| 313 | } |
| 314 | |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 315 | } // namespace implementation |
Tharaga Balachandran | 74ab111 | 2020-01-08 17:17:56 -0500 | [diff] [blame] | 316 | } // namespace V3_0 |
Naseer Ahmed | e36f224 | 2017-12-01 15:33:56 -0500 | [diff] [blame] | 317 | } // namespace mapper |
| 318 | } // namespace display |
| 319 | } // namespace hardware |
| 320 | } // namespace qti |
| 321 | } // namespace vendor |