mutter:alatiera/docker-images

Last commit made on 2018-11-11
Get this branch:
git clone -b alatiera/docker-images https://git.launchpad.net/mutter

Branch merges

Branch information

Name:
alatiera/docker-images
Repository:
lp:mutter

Recent commits

2bc6924... by Jordan Petridis <email address hidden>

CI: add job to build the docker image

This defines a template for building docker images as well as a
job to build the fedora image thats mean to replace the one
that's currently used.

Close #381

1dff74e... by Exalm

build: Fix libs and cflags in autotools .pc file

Similar to b86d87453d5ff7689101ea995d32cf8023b567ec

25c53b2... by Jonas Ådahl

backend: Freeze frame clock when headless

Don't schedule redraws when being headless; there is nothing to draw so
don't attempt to draw. This also makes a flaky test become non-flaky, as
it previously spuriously got warnings due to windows being "painted"
when headless but lacking frame timings, as nothing was actually
painted.

https://gitlab.gnome.org/GNOME/mutter/merge_requests/170

213ed80... by Jonas Ådahl

backends: Move clutter frame clock freeze/thaw API to ClutterSTage

It had nothing to do with EGL or the eglnative backend, and will be used
by non-native backends, so move it to a common place.

https://gitlab.gnome.org/GNOME/mutter/merge_requests/170

9adf882... by Jonas Ådahl

backends/stage: Remove unused function declaration

https://gitlab.gnome.org/GNOME/mutter/merge_requests/170

19930c6... by Jonas Ådahl

backends/stage: Remove MetaStagePrivate

The empty MetaStage was in meta-stage-private.h for no reason, so lets
move it to the C file. This makes it pointless to have a private
instance struct, so just move the fields to the private struct
_MetaStage.

https://gitlab.gnome.org/GNOME/mutter/merge_requests/170

80d5f32... by Jonas Ådahl

clutter: Assume XGE is available at build time

Almost a decade old, lets just assume it's there. This makes the button
on cally-atktext-example work again when building with meson, and
probably other things too.

1573285... by Jonas Ådahl

clutter-shader: Don't include unistd.h

It isn't needed.

9969498... by Jonas Ådahl

cogl: Silence some introspection warnings

Mostly skipping functions of non-introspected types, but also added a
missing callback scope.

c5ac3d6... by Georges Basile Stavracas Neto

theme: Drop gtk_css_provider_get_default()

Instead of using gtk_css_provider_get_default(), add a
static GtkCssProvider and fetch it instead. Creating
GtkCssProviders consume a bit more memory, so keeping
a single one alive is slightly more memory saving.