struct ComposerState {
layer_state_t state;
status_t write(Parcel&output)const;
status_t read(const Parcel&input);
};
ComposerState 是对 layer_state_t 的封装。write()
和 read()
函数实现是调用 layer_state_t
的 write()
和 read()
函数。
定义在 frameworks/native/libs/gui/include/gui/LayerState.h
。