taisei/src/pixmap/meson.build
Andrei Alexeyev b4e07470d8
pixmap: refactor
* Split conversion-related code into a separate file.
* Renamed loaders to fileformat handlers.
* Added API for exporting into one of the supported file formats.
* Replaced serialization APIs with an "internal" fileformat capable of
  of storing any Pixmap. It is identical to the serialization format.
* Removed PNG writing code from video_screenshot_task, now using the new
  pixmap export API instead.
2021-07-18 18:27:38 +03:00

8 lines
119 B
Meson

pixmap_src = files(
'pixmap.c',
'conversion.c',
)
subdir('fileformats')
pixmap_src += pixmap_fileformats_src