* shell, frontend: Partial cleanup of the logic around advance_client_buffer()
* compositor: remove mc::OverlayRenderer
* compositor, shell: More cleanup of the logic around secure_client_buffer()
* Add a MirBool type to the client API so that client function declarations are more self-documenting and easier to understand.
* gbm: Add server side infrastructure for SHM buffer support
* clean up unit tests (ran under android) so there's no uninitialized value errors for the unit-tests/graphics/android tests, and make the tests run without gmock warning, unexpected call errors. (LP: #1172184)
* enables testing on armhf, does not run valgrind on unit-tests because it's currently failing
* compositor: improve mc::Renderer interface so it is not concerned with BufferS
tream state, just with posting a buffer using OpenGL.
* Add mir_event_type_resize / MirResizeEvent, allowing clients to react immediately to surface resizing. (LP: #1227744)
* graphics: android: enable legacy hook for turning display on and off in the FB device.
* gbm: Enable shared memory software buffers
* GBMDisplayTest: Timeout and fail the test rather than hanging indefinitely
* tests/gbm: Expect the correct number of udev notificiations
* android,gbm: Change license to LGPL-3 and move to src/platform.
* mir_demo_server_shell: Don't restart the compositor after turning the screen off. It will just start spinning unthottled (LP: #1255818) and generates worrying visuals (while bug 1231857 is also unresolved).
* Unify redundant PixelFormat typedefs into one: MirPixelFormat (LP: #1110115)
* tools: Use debootstrap to resolve the dependencies of Mir's build-dependencies, rather than maintaining a list of the full transitive dependency chain of all Mir's build-dependencies.
* mir_demo_server_shell: Add droid-friendly controls for power management (sleep using the power button).
* scene: remove one of the Surface classes (other Surface classes beware!)
* Split the InputTest client fixture out of test_client_input.cpp in to a mtf::InputTestingClientConfiguration utility class.
* gbm: Remove GBM/gbm prefix from classes and files
* scene: remove a session parameter we do not need nor want
* client: Remove GBM/gbm prefix from classes and files
* tests: disable test that exposes racy client API code (LP: #1245803).
* The code path to initialize nested display was going and opening up the display hardware functions (but not using them). This was causing problems because it meant older devices that can't open up the display hardware in more than one process were choking, and newer devices required 'video' group permissions to work. This changes things so that nested display doesn't access any display hardware (LP: #1258056)
* graphics, compositor, frontend: stop passing out shared_ptr to client buffer a
nd stick to a raw pointer.
* shell, scene: Make the annoying shell::SurfaceController private to scene.
* gbm: Rename gbm namespace to mesa.
* tools/setup-partial-armhf-chroot: Leave the chroot set up so the next build is fast.
* tests: some cleanup of test code prompted by tests failing on CI.
* remove pointless class, "SurfaceState".
* doc/building_source_for_android.md: Don't make armhf an implicit architecture for the cross-compiling host. We don't need to since we explicitly request download of armhf packages.
* tools: Don't try getting non-existent package 'android-platform-headers' (LP: #1261637)
* tests: Wait for server to really start up when running tests
* Logging: Add timestamps to log messages and change the prefix format to be more like that of kernel/Xorg logs.
* Logger: Don't use template parameters where only function parameters are needed.
* Move default_configuration.cpp out of libmirsharedlogging and into a new library libmirsharedenv where it makes more sense.
* tests: Use steady_clock to keep track of timeouts and intervals
* Fixes the build problem with the current chroot setup. This fixes Mir build failures (LP: #1262305).
* client: slim down the mcl::SurfaceMap interface.
* tests: test fixture to run an in-process Mir server.
* Tidy up output of logging::InputReport.
* nested: Check for, and prefer, EGL_KHR_surfaceless_context over dummy pbuffer surfaces. It seems that at least one of our Android stacks doesn't support EGL_KHR_surfaceless_context, and Mesa doesn't support pbuffer surfaces. Fixes nested on Mesa (LP: #1260635).
* test: separate concerns of stubbing server configuration for tests and cross process test synchronization. (LP: #1262754)