mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2026-02-05 04:06:20 -05:00
The behavior of content updates, specifically in combination with sync subsrufaces and constrains can become quite complicated. This introduces a chapter in the wayland book which explains the behavior of the core specification in this regard, and shows examples. Signed-off-by: Sebastian Wick <sebastian.wick@redhat.com>
37 lines
760 B
Meson
37 lines
760 B
Meson
foreach src : files([
|
|
'icon.svg',
|
|
'wayland.png',
|
|
])
|
|
name = fs.name(src)
|
|
publican_inputs += fs.copyfile(
|
|
name,
|
|
install: true,
|
|
install_dir: publican_install_prefix + '/html/images',
|
|
)
|
|
endforeach
|
|
|
|
subdir('content-updates')
|
|
|
|
foreach src : files([
|
|
'wayland-architecture.gv',
|
|
'x-architecture.gv',
|
|
])
|
|
input = fs.name(src)
|
|
output = fs.stem(src) + '.png'
|
|
|
|
publican_inputs += custom_target(
|
|
input + '.png',
|
|
command: [ dot, '-Tpng', '-o@OUTPUT@', '@INPUT@' ],
|
|
input: input,
|
|
output: output,
|
|
install: true,
|
|
install_dir: publican_install_prefix + '/html/images',
|
|
)
|
|
|
|
publican_image_maps += custom_target(
|
|
input + '.map',
|
|
command: [ dot, '-Tcmapx_np', '-o@OUTPUT@', '@INPUT@' ],
|
|
input: input,
|
|
output: fs.stem(src) + '.map',
|
|
)
|
|
endforeach
|