commit | 22199050bda169bbc57cd40b6b7cbf123f246aa8 | [log] [tgz] |
---|---|---|
author | Lingfeng Yang <[email protected]> | Wed Nov 04 16:28:59 2020 -0800 |
committer | Lingfeng Yang <[email protected]> | Wed Nov 04 16:29:33 2020 -0800 |
tree | e1191763e096951ae95d0a15c644073c3123638a | |
parent | f64ede57ee80ed66066230d857e4b3bc893aff16 [diff] |
Call it libgfxstream_backend not gfxstream_backend in Android.bp Bug: 171711491 Change-Id: Ie61fd9794f20d8d0267a161420351206376ea6ca
Graphics Streaming Kit is a code generator that makes it easier to serialize and forward graphics API calls from one place to another:
Make sure you are using Clang as your CC
and CXX
. Then
mkdir build cd build cmake . ../ make -j24
TODO: guest build makefiles (Android.bp)
CMakeLists.txt
: specifies all host-side build targets. This includes all backends along with client/server setups that live only on the host. SomeAndroid.bp
: specifies all guest-side build targets for Android:BUILD.gn
: specifies all guest-side build targets for Fuchsiabase/
: common libraries that are built for both the guest and host. Contains utility code related to synchronization, threading, and suballocation.protocols/
: implementations of protocols for various graphics APIs. May contain code generators to make it easy to regen the protocol based on certain things.host-common/
: implementations of host-side support code that makes it easier to run the server in a variety of virtual device environments. Contains concrete implementations of auxiliary virtual devices such as Address Space Device and Goldfish Pipe. APIs that consume protocol.stream-servers/
: implementations of various backends for various graphics APIs that consume protocol. gfxstream-virtio-gpu-renderer.cpp contains a virtio-gpu backend implementation.