DSOutput: add getDisplayDeviceOutput method 91/241691/1
authorSooChan Lim <sc1.lim@samsung.com>
Thu, 30 Jul 2020 10:14:57 +0000 (19:14 +0900)
committerSung-Jin Park <sj76.park@samsung.com>
Thu, 20 Aug 2020 10:04:52 +0000 (19:04 +0900)
Change-Id: Ia9731d22897c2d9addfde2c083b8906a226b8a03

src/DSOutput/DSOutputImpl.cpp
src/DSOutput/DSOutputImpl.h

index ac43483..b97d6d4 100644 (file)
@@ -50,6 +50,11 @@ bool DSOutputImpl::applyResolutionAuto()
        return true;
 }
 
+std::shared_ptr<IDSDisplayDeviceOutput> DSOutputImpl::getDisplayDeviceOutput()
+{
+       return __displayDeviceOutput;
+}
+
 std::shared_ptr<IDSBufferQueue> DSOutputImpl::getDisplayBufferQueue()
 {
        std::shared_ptr<IDSDisplayDeviceHWC> displayDeviceHWC = __displayDeviceOutput->getHWC();
index a16c546..b0792ff 100644 (file)
@@ -17,6 +17,7 @@ public:
        int getResolutionHeight() override;
        bool applyResolutionAuto() override;
 
+       std::shared_ptr<IDSDisplayDeviceOutput> getDisplayDeviceOutput();
        std::shared_ptr<IDSBufferQueue> getDisplayBufferQueue();
 
 private: