Android Graphics模块中的各种State和重要类普法

Android Graphics模块中的各种State和重要类普法



引言

尼玛,这Android Graphics图形栈蛋疼啊,更新太快了。机会是每年一个版本,前进的胶布不能停啊,继续干。这边博客,我们的核心是理一理Android Graphics中各种State状态类。

这里分析的Android版本是Android 13 aosp!



一. Layer中State

先不解释,先直接上代码,后分析:

//frameworks/native/services/surfaceflinger/Layer.h//struct android::Layer::Statestruct State {Geometry active_legacy;Geometry requested_legacy;int32_t z;ui::LayerStack layerStack;uint32_t flags;uint8_t reserved[2];int32_t sequence; // changes when visible regions can changebool modified;// Crop is expressed in layer space coordinate.Rect crop;Rect requestedCrop;// the transparentRegion hint is a bit special, it's latched only// when we receive a buffer -- this is because it's "content"// dependent.Region activeTransparentRegion_legacy;Region requestedTransparentRegion_legacy;LayerMetadata metadata;// If non-null, a Surface this Surface's Z-order is interpreted relative to.wp<Layer> zOrderRelativeOf;bool isRelativeOf{false};// A list of surfaces whose Z-order is interpreted relative to ours.SortedVector<wp<Layer>> zOrderRelatives;half4 color;float cornerRadius;int backgroundBlurRadius;gui::WindowInfo inputInfo;wp<Layer> touchableRegionCrop;// dataspace is only used by BufferStateLayer and EffectLayerui::Dataspace dataspace;// The fields below this point are only used by BufferStateLayeruint64_t frameNumber;uint32_t width;uint32_t height;ui::Transform transform;uint32_t bufferTransform;bool transformToDisplayInverse;Region transparentRegionHint;std::shared_ptr<renderengine::ExternalTexture> buffer;client_cache_t clientCacheId;sp<Fence> acquireFence;std::shared_ptr<FenceTime> acquireFenceTime;HdrMetadata hdrMetadata;Region surfaceDamageRegion;int32_t api;sp<NativeHandle> sidebandStream;mat4 colorTransform;bool hasColorTransform;// pointer to background color layer that, if set, appears below the buffer state layer// and the buffer state layer's children.  Z order will be set to// INT_MINsp<Layer> bgColorLayer;// The deque of callback handles for this frame. The back of the deque contains the most// recent callback handle.std::deque<sp<CallbackHandle>> callbackHandles;bool colorSpaceAgnostic;nsecs_t desiredPresentTime = 0;bool isAutoTimestamp = true;// Length of the cast shadow. If the radius is > 0, a shadow of length shadowRadius will// be rendered around the layer.float shadowRadius;// Layer regions that are made of custom materials, like frosted glassstd::vector<BlurRegion> blurRegions;// Priority of the layer assigned by Window Manager.int32_t frameRateSelectionPriority;FrameRate frameRate;// The combined frame rate of parents / children of this layerFrameRate frameRateForLayerTree;// Set by window manager indicating the layer and all its children are// in a different orientation than the display. The hint suggests that// the graphic producers should receive a transform hint as if the// display was in this orientation. When the display changes to match// the layer orientation, the graphic producer may not need to allocate// a buffer of a different size. ui::Transform::ROT_INVALID means the// a fixed transform hint is not set.ui::Transform::RotationFlags fixedTransformHint;// The vsync info that was used to start the transactionFrameTimelineInfo frameTimelineInfo;// When the transaction was postednsecs_t postTime;sp<ITransactionCompletedListener> releaseBufferListener;// SurfaceFrame that tracks the timeline of Transactions that contain a Buffer. Only one// such SurfaceFrame exists because only one buffer can be presented on the layer per vsync.// If multiple buffers are queued, the prior ones will be dropped, along with the// SurfaceFrame that's tracking them.std::shared_ptr<frametimeline::SurfaceFrame> bufferSurfaceFrameTX;// A map of token(frametimelineVsyncId) to the SurfaceFrame that's tracking a transaction// that contains the token. Only one SurfaceFrame exisits for transactions that share the// same token, unless they are presented in different vsyncs.std::unordered_map<int64_t, std::shared_ptr<frametimeline::SurfaceFrame>>bufferlessSurfaceFramesTX;// An arbitrary threshold for the number of BufferlessSurfaceFrames in the state. Used to// trigger a warning if the number of SurfaceFrames crosses the threshold.static constexpr uint32_t kStateSurfaceFramesThreshold = 25;// Stretch effect to apply to this layerStretchEffect stretchEffect;// Whether or not this layer is a trusted overlay for inputbool isTrustedOverlay;Rect bufferCrop;Rect destinationFrame;sp<IBinder> releaseBufferEndpoint;gui::DropInputMode dropInputMode;bool autoRefresh = false;bool dimmingEnabled = true;};// These are only accessed by the main thread or the tracing thread.State mDrawingState;

这里的Layer.State主要存储了该Layer相关的数据,例如长宽,各种矩阵,阴影等。

这里有点疑问,没有看到mCurrentState这个!




二. BufferLayer中对应的BufferInfo

这个BufferInfo比较重要,主要用于将Layer的信息传递给后续的OutputLayer。

//frameworks/native/services/surfaceflinger/BufferLayer.h
class BufferLayer : public Layer {...protected:struct BufferInfo {nsecs_t mDesiredPresentTime;std::shared_ptr<FenceTime> mFenceTime;sp<Fence> mFence;uint32_t mTransform{0};ui::Dataspace mDataspace{ui::Dataspace::UNKNOWN};Rect mCrop;uint32_t mScaleMode{NATIVE_WINDOW_SCALING_MODE_FREEZE};Region mSurfaceDamage;HdrMetadata mHdrMetadata;int mApi;PixelFormat mPixelFormat{PIXEL_FORMAT_NONE};bool mTransformToDisplayInverse{false};std::shared_ptr<renderengine::ExternalTexture> mBuffer;uint64_t mFrameNumber;int mBufferSlot{BufferQueue::INVALID_BUFFER_SLOT};bool mFrameLatencyNeeded{false};};BufferInfo mBufferInfo;   ...}



三. OutputLayer对应的CompositionState

这里需要注意CompositionState对应的域空间,不要和Layer里面的搞混淆了!

//frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/OutputLayer.h
class OutputLayer {using CompositionState = compositionengine::impl::OutputLayerCompositionState;
}///frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/OutputLayerCompositionState.h
namespace compositionengine::impl {//namespace android::compositionengine::impl// Note that fields that affect HW composer state may need to be mirrored into
// android::compositionengine::impl::planner::LayerState
struct OutputLayerCompositionState {// The portion of the layer that is not obscured by opaque layers on topRegion visibleRegion;// The portion of the layer that is not obscured and is also opaqueRegion visibleNonTransparentRegion;// The portion of the layer that is obscured by opaque layers on topRegion coveredRegion;// The visibleRegion transformed to output spaceRegion outputSpaceVisibleRegion;// Region cast by the layer's shadowRegion shadowRegion;// If true, client composition will be used on this outputbool forceClientComposition{false};// If true, when doing client composition, the target may need to be clearedbool clearClientTarget{false};// The display frame for this layer on this outputRect displayFrame;// The source crop for this layer on this outputFloatRect sourceCrop;// The buffer transform to use for this layer o on this output.Hwc2::Transform bufferTransform{static_cast<Hwc2::Transform>(0)};// The dataspace for this layerui::Dataspace dataspace{ui::Dataspace::UNKNOWN};// A hint to the HWC that this region is transparent and may be skipped in// order to save power.Region outputSpaceBlockingRegionHint;// Overrides the buffer, acquire fence, and display frame stored in LayerFECompositionStatestruct {std::shared_ptr<renderengine::ExternalTexture> buffer = nullptr;sp<Fence> acquireFence = nullptr;Rect displayFrame = {};ui::Dataspace dataspace{ui::Dataspace::UNKNOWN};ProjectionSpace displaySpace;Region damageRegion = Region::INVALID_REGION;Region visibleRegion;// The OutputLayer pointed to by this field will be rearranged to draw// behind the OutputLayer represented by this CompositionState and will// be visible through it. Unowned - the OutputLayer's lifetime will// outlast this.)compositionengine::OutputLayer* peekThroughLayer = nullptr;// True when this layer's blur has been cached with a previous layer, so that this layer// does not need to request blurring.// TODO(b/188816867): support blur regions too, which are less likely to be common if a// device supports cross-window blurs. Blur region support should be doable, but we would// need to make sure that layer caching works well with the blur region transform passed// into RenderEnginebool disableBackgroundBlur = false;} overrideInfo;/** HWC state*/struct Hwc {explicit Hwc(std::shared_ptr<HWC2::Layer> hwcLayer) : hwcLayer(hwcLayer) {}// The HWC Layer backing this layerstd::shared_ptr<HWC2::Layer> hwcLayer;// The most recently set HWC composition type for this layeraidl::android::hardware::graphics::composer3::Composition hwcCompositionType{aidl::android::hardware::graphics::composer3::Composition::INVALID};// The buffer cache for this layer. This is used to lower the// cost of sending reused buffers to the HWC.HwcBufferCache hwcBufferCache;// Set to true when overridden info has been sent to HW composerbool stateOverridden = false;// True when this layer was skipped as part of SF-side layer caching.bool layerSkipped = false;};// The HWC state is optional, and is only set up if there is any potential// HWC acceleration possible.std::optional<Hwc> hwc;// Debuggingvoid dump(std::string& result) const;// Timestamp for when the layer is queued for client compositionnsecs_t clientCompositionTimestamp{0};static constexpr float kDefaultWhitePointNits = 200.f;float whitePointNits = kDefaultWhitePointNits;// Dimming ratio of the layer from [0, 1]static constexpr float kDefaultDimmingRatio = 1.f;float dimmingRatio = kDefaultDimmingRatio;
};} // namespace compositionengine::impl



四 Output和Display

这里要怎么理解Output和Display呢,可以简单概括就是:

  • Output: 封装所有与合成输出层相关的状态
//frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/Output.h
namespace android {
namespace compositionengine {
class Output {
public:using OutputCompositionState = compositionengine::impl::OutputCompositionState;// Gets the raw composition state data for the output// TODO(lpique): Make this protected once it is only internally called.virtual const OutputCompositionState& getState() const = 0;// Allows mutable access to the raw composition state data for the output.// This is meant to be used by the various functions that are part of the// composition process.// TODO(lpique): Make this protected once it is only internally called.virtual OutputCompositionState& editState() = 0;auto getOutputLayersOrderedByZ() const { return OutputLayersEnumerator(*this); }    // Prepare the output, updating the OutputLayers used in the outputvirtual void prepare(const CompositionRefreshArgs&, LayerFESet&) = 0;// Presents the output, finalizing all composition detailsvirtual void present(const CompositionRefreshArgs&) = 0;// Latches the front-end layer state for each output layervirtual void updateLayerStateFromFE(const CompositionRefreshArgs&) const = 0;    
}
}// namespace compositionengine
}// namespace android

Output还有一个对应域空间android::compositionengine::impl的,它们之间的关联,暂时还没有搞清楚

  • Display: 表示所有输出层最终对应的显示设备,可以有硬件合成器支持的显示设备,也可以对应虚拟显示设备
namespace android::compositionengine {
class Display : public virtual Output {
}
} // namespace android::compositionengine



五. LayerFE

按照谷歌注释的翻译意思是,定义合成引擎用于向前端层发出请求的接口!这个我的理解它主要是Layer的一个前端,主要用来处理Layer合成相关的,!表示一个"前端"Layer,跟Layer相对应,用于处理Layer在合成阶段的工作


namespace android {
namespace compositionengine {// Defines the interface used by the CompositionEngine to make requests
// of the front-end layer
class LayerFE : public virtual RefBase {// Gets the raw front-end composition state data for the layervirtual const LayerFECompositionState* getCompositionState() const = 0;}} // namespace compositionengine
} // namespace android



六 LayerFECompositionState

表示Layer的frontEnd(LayerFECompositionState)

//frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/LayerFECompositionState.h
/** Used by LayerFE::getCompositionState* Note that fields that affect HW composer state may need to be mirrored into* android::compositionengine::impl::planner::LayerState*/
struct LayerFECompositionState {// If set to true, forces client composition on all output layers until// the next geometry change.bool forceClientComposition{false};// TODO(b/121291683): Reorganize and rename the contents of this structure/** Visibility state*/// The filter that determines which outputs include this layerui::LayerFilter outputFilter;// If false, this layer should not be considered visiblebool isVisible{true};// True if the layer is completely opaquebool isOpaque{true};// If true, invalidates the entire visible regionbool contentDirty{false};// The alpha value for this layerfloat alpha{1.f};// Background blur in pixelsint backgroundBlurRadius{0};// The transform from layer local coordinates to composition coordinatesui::Transform geomLayerTransform;// The inverse of the layer transformui::Transform geomInverseLayerTransform;// The hint from the layer producer as to what portion of the layer is// transparent.Region transparentRegionHint;// The blend mode for this layerhal::BlendMode blendMode{hal::BlendMode::INVALID};// The bounds of the layer in layer local coordinatesFloatRect geomLayerBounds;// length of the shadow in screen spacefloat shadowRadius{0.f};// List of regions that require blurstd::vector<BlurRegion> blurRegions;StretchEffect stretchEffect;/** Geometry state*/bool isSecure{false};bool geomUsesSourceCrop{false};bool geomBufferUsesDisplayInverseTransform{false};uint32_t geomBufferTransform{0};Rect geomBufferSize;Rect geomContentCrop;Rect geomCrop;GenericLayerMetadataMap metadata;/** Per-frame content*/// The type of composition for this layeraidl::android::hardware::graphics::composer3::Composition compositionType{aidl::android::hardware::graphics::composer3::Composition::INVALID};// The buffer and related statesp<GraphicBuffer> buffer;int bufferSlot{BufferQueue::INVALID_BUFFER_SLOT};sp<Fence> acquireFence = Fence::NO_FENCE;Region surfaceDamage;uint64_t frameNumber = 0;// The handle to use for a sideband stream for this layersp<NativeHandle> sidebandStream;// If true, this sideband layer has a frame updatebool sidebandStreamHasFrame{false};// The color for this layerhalf4 color;/** Per-frame presentation state*/// If true, this layer will use the dataspace chosen for the output and// ignore the dataspace value just belowbool isColorspaceAgnostic{false};// The dataspace for this layerui::Dataspace dataspace{ui::Dataspace::UNKNOWN};// The metadata for this layerHdrMetadata hdrMetadata;// The color transformmat4 colorTransform;bool colorTransformIsIdentity{true};// True if the layer has protected contentbool hasProtectedContent{false};/** Cursor state*/// The output-independent frame for the cursorRect cursorFrame;// framerate of the layer as measured by LayerHistoryfloat fps;// The dimming flagbool dimmingEnabled{true};virtual ~LayerFECompositionState();// Debuggingvirtual void dump(std::string& out) const;
};



1.Surface的创建【Android 12】

2.Android下Layer的创建

3.onMessageRefresh

参考里面对核心类的解释!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/17668.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

2024最新版本激活Typora,1.8.10.0版本可用

​实测可用日期为&#xff1a;2024-05-28 目前最新版本 1.8.10.0 也是可以实现激活的 注&#xff1a;免修改注册表、不用修改时间&#xff0c;更不需要破解补丁 01、下载&安装 Typora 文件 从官网下载最新版本的 Typora&#xff0c;并安装 或者阿里云盘&#xff1a; htt…

Pytorch深度学习实践笔记12(b站刘二大人)

&#x1f3ac;个人简介&#xff1a;一个全栈工程师的升级之路&#xff01; &#x1f4cb;个人专栏&#xff1a;pytorch深度学习 &#x1f380;CSDN主页 发狂的小花 &#x1f304;人生秘诀&#xff1a;学习的本质就是极致重复! 《PyTorch深度学习实践》完结合集_哔哩哔哩_bilibi…

数据集008:吸烟、抽烟检测数据集(含数据集下载链接)

数据集简介 两个数据集 一个是783张图片对应的xml文件 一个是2482张图片对应的xml文件 如下图所示&#xff1a; 部分代码&#xff1a; # 测试数据读取 def test_data_loader(datadir, batch_size 10, test_image_size608, modetest):"""加载测试用的图片…

大学生选择算法向还是嵌入式向?

在开始前刚好我有一些资料&#xff0c;是我根据网友给的问题精心整理了一份「嵌入式的资料从专业入门到高级教程」&#xff0c; 点个关注在评论区回复“888”之后私信回复“888”&#xff0c;全部无偿共享给大家&#xff01;&#xff01;&#xff01; 由于嵌入式的薪资待遇和…

品牌建设不迷路:系统化方法让品牌成长更高效

很多创始人才创业过程中都会发现&#xff1a; 企业越大&#xff0c;遇到的系统性的底层品牌问题就会越多&#xff0c;品牌的系统化建设底层根基如果不稳&#xff0c;后续的增长也会摇摇欲坠。 所以在当今竞争激烈的市场环境中&#xff0c;品牌的成功不仅仅依靠一个响亮的名字…

Spring Boot注解(Annotation)

在Spring Boot中&#xff0c;注解&#xff08;Annotation&#xff09;是一种元数据形式&#xff0c;它可以在代码中提供信息&#xff0c;这些信息可以在运行时或编译时被处理。Spring Boot使用注解来实现依赖注入、事务管理、配置等功能。 以下是Spring Boot中注解的执行机制的…

【Linux】Linux的权限_1

文章目录 三、权限1. shell外壳2. Linux的用户3. Linux权限管理文件访问者的分类文件类型和访问权限 未完待续 三、权限 1. shell外壳 为什么要使用shell外壳 由于用户不擅长直接与操作系统直接接触和操作系统的易用程度、安全性考虑&#xff0c;用户不能直接访问操作系统。 什…

文件IO(一)

文件IO&#xff08;一&#xff09; 文件IO文件的分类在文件IO下&#xff0c;文件分类按存储的内容分按照操作分 标准IO和文件IO的区别系统调用和库函数的区别 文件IO 把程序暂存在内存的数据&#xff0c;存储到本地外存上 文件的分类 在Linux系统下&#xff0c;文件共分为7类…

AI答题项目,无门槛答题一小时收益30+

朋友们&#xff0c;今天我想和大家探讨一个令人兴奋的副业机遇。你是否曾感觉到日常工作的枯燥乏味&#xff0c;而又渴望找到一种轻松的赚钱方式来增加你的收入&#xff1f;今天我将和你分享的这个项目正是你所期待的。 项目的核心是利用AI技术来回答网上付费用户的问题&…

重生之我要精通JAVA--第六周笔记

File 路径 相对路径 路径1&#xff1a;“a.txt” 路径2&#xff1a;“abc\\a.txt” 绝对路径 路径1&#xff1a;“c:\\a.txt” 路径2&#xff1a;“c:\\abc\\a.txt” File对象就表示一个路径&#xff0c;可以是文件的路径、也可以是文件夹的路径这个路径可以是存在的&…

linux线程,线程控制与线程相关概念

线程概念 线程这个词或多或少大家都听过&#xff0c;今天我们正式的来谈一下线程&#xff1b; 在我一开始的概念中线程就是进程的一部分&#xff0c;一个进程中有很多个线程&#xff0c;这个想法基本是正确的&#xff0c;但细节部分呢我们需要细细讲解一下&#xff1b; 什么…

“揭秘:为什么羊驼Ollama成为计算机运行大型语言模型的最佳拍档?“

最近&#xff0c;AIM 评测了在计算机上本地运行大语言模型&#xff08;LLM&#xff09;的最佳工具&#xff0c;Ollama 脱颖而出&#xff0c;成为最高效的解决方案&#xff0c;提供了无与伦比的灵活性。Ollama 是 Jeffrey Morgan 开发的一款开源工具&#xff0c;它正在彻底改变爱…

我被恐吓了,对方扬言要压测我的网站

大家好我是聪&#xff0c;昨天真是水逆&#xff0c;在技术群里交流问题&#xff0c;竟然被人身攻击了&#xff01;骂的话太难听具体就不加讨论了&#xff0c;人身攻击我可以接受&#xff0c;我接受不了他竟然说要刷我接口&#xff01;&#xff01;&#xff01;&#xff01;这下…

启用标准大页后内存使用率下降了

未启用前 [rootol819c ~]# free -htotal used free shared buff/cache available Mem: 9.3Gi 984Mi 379Mi 1.5Gi 8.0Gi 6.8Gi Swap: 15Gi 3.0Mi 15Gi [rootol819c ~]# free -htotal …

【NumPy】掌握NumPy的histogram函数:数据直方图的生成与应用详解

&#x1f9d1; 博主简介&#xff1a;阿里巴巴嵌入式技术专家&#xff0c;深耕嵌入式人工智能领域&#xff0c;具备多年的嵌入式硬件产品研发管理经验。 &#x1f4d2; 博客介绍&#xff1a;分享嵌入式开发领域的相关知识、经验、思考和感悟&#xff0c;欢迎关注。提供嵌入式方向…

速度百倍提升,高性能 Python 编译器 Codon 火了

引言 在当下的编程世界里&#xff0c;Python由于其易用性和强大的库支持在数据科学、人工智能和网页开发等多个领域占据着举足轻重的地位。然而&#xff0c;Python的执行速度往往成为开发者的一大痛点。 针对 这一问题&#xff0c;Codon项目正试图提供一个高效的解决方案。Codo…

java新特性(Stream API)

什么是 Stream API? Stream API 是 Java 8 引入的一个用于对集合数据进行函数式编程操作的强大的库。它允许我们以一种更简洁、易读、高效的方式来处理集合数据,可以极大提高 Java 程序员的生产力,是目前为止对 Java 类库最好的补充。 Stream API 的核心思想是将数据处理操作…

小识MFC,一套设计优雅与不优雅并存的类库----小话MFC(2)

Q1&#xff1a; CPoint继承于POINT&#xff0c;这样有什么好处&#xff1f; A&#xff1a; 继承的一个最基本的好处当然就是减少代码量。CPoint和POINT内部数据一样&#xff0c;只是一个提供了更多的方法来操作对象。 typedef struct tagPOINT {LONG x;LONG y; } POINT, *P…

【Flutter】动画介绍隐式动画

&#x1f525; 本文由 程序喵正在路上 原创&#xff0c;CSDN首发&#xff01; &#x1f496; 系列专栏&#xff1a;Flutter学习 &#x1f320; 首发时间&#xff1a;2024年5月28日 &#x1f98b; 欢迎关注&#x1f5b1;点赞&#x1f44d;收藏&#x1f31f;留言&#x1f43e; 目…

SpringMvc-restful设计风格

Restful 1、入门1.1 简介1.2 实例 1、入门 1.1 简介 RESTFul是什么 RESTFul是WEB服务接口的一种设计风格。 RESTFul定义了一组约束条件和规范&#xff0c;可以让WEB服务接口更加简洁、易于理解、易于扩展、安全可靠。 1.2 实例 web.xml <?xml version"1.0"…