--
unsubscribe: android-porti...@googlegroups.com
website: http://groups.google.com/group/android-porting
so where would be the place to capture the entire display? e.g. if I wanted to implement something like "cp /dev/fb0" in order to later deserialize it in another place (something like taking a screenshot)?
acheiving something like this should be straight forward, and I know that in the first android versions it was implemented somewhere natively because they did a vnc hook, but I don't knoe where to start from.
thanks.
--
You received this message because you are subscribed to the Google Groups "android-platform" group.
To post to this group, send email to android-...@googlegroups.com.
To unsubscribe from this group, send email to android-platfo...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/android-platform?hl=en.
The kernel maintains separate pipelines for graphics and video. It is
only in the ARM SOC hardware, directly before sending output to the
display, that the two pipelines are merged.
Note that the video pipeline is often referred to as a video overlay,
and Android has liboverlay as a hardware abstraction library. You
might be able to trace down more information by looking there.
-Eric
Hi,
--