Home
last modified time | relevance | path

Searched defs:CtrlValue (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/hardware/google/graphics/common/libhwc2.1/libhwchelper/
DExynosHWCHelper.h668 struct CtrlValue { struct
670 CtrlValue() : value_(), dirty_(false) {} in CtrlValue() function
671 CtrlValue(const T& value) : value_(value), dirty_(false) {} in CtrlValue() argument
673 void store(const T& value) { in store()
679 void store(T&& value) { in store()
685 const T &get() { return value_; }; in get()
686 bool is_dirty() { return dirty_; }; in is_dirty()
687 void clear_dirty() { dirty_ = false; }; in clear_dirty()
688 void set_dirty() { dirty_ = true; }; in set_dirty()
689 void reset(T value) { value_ = value; dirty_ = false; } in reset()
[all …]