Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 30425b85 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Fix VTS fail for GraphicsMapperHidlTest" am: eef384a8 am: a5439e22 am: 9091f869

Change-Id: I092c9b06535a4df77440e3a798bb079bc39418db
parents e93e85d1 9091f869
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -49,7 +49,12 @@ class Gralloc0HalImpl : public V2_0::passthrough::detail::Gralloc0HalImpl<Hal> {
                 mModule, bufferHandle, descriptorInfo.width, descriptorInfo.height,
                 static_cast<int32_t>(descriptorInfo.format),
                 static_cast<uint64_t>(descriptorInfo.usage), stride);
         return static_cast<Error>(ret);
         if (ret == -EINVAL) {
             return Error::BAD_BUFFER;
         } else if (ret < 0) {
             return Error::BAD_VALUE;
         }
         return Error::NONE;
     }
     Error getTransportSize(const native_handle_t* bufferHandle, uint32_t* outNumFds,
                            uint32_t* outNumInts) override {