diff options
Diffstat (limited to 'libhwc2.1/libdisplayinterface/ExynosDisplayInterface.h')
-rw-r--r-- | libhwc2.1/libdisplayinterface/ExynosDisplayInterface.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libhwc2.1/libdisplayinterface/ExynosDisplayInterface.h b/libhwc2.1/libdisplayinterface/ExynosDisplayInterface.h index 5028e39..ac773b5 100644 --- a/libhwc2.1/libdisplayinterface/ExynosDisplayInterface.h +++ b/libhwc2.1/libdisplayinterface/ExynosDisplayInterface.h @@ -71,6 +71,11 @@ class ExynosDisplayInterface { /* For HWC 2.4 APIs */ virtual int32_t getVsyncAppliedTime(hwc2_config_t __unused config, int64_t* __unused actualChangeTime) {return NO_ERROR;} virtual void destroyLayer(ExynosLayer* __unused layer){}; + /* For HWC 3.0 APIs */ + virtual int32_t getDisplayIdleTimerSupport(bool& outSupport) { + outSupport = false; + return NO_ERROR; + } virtual int32_t waitVBlank() { return 0; }; public: |