summaryrefslogtreecommitdiffstats
path: root/src/shaders/meson.build
blob: 746747c310a5c8a2d4573f30ebb60646f1c55cd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
shader_sources = [
  'colorspace.c',
  'custom.c',
  'custom_mpv.c',
  'deinterlacing.c',
  'dithering.c',
  'film_grain.c',
  'film_grain_av1.c',
  'film_grain_h274.c',
  'icc.c',
  'lut.c',
  'sampling.c',
]

foreach s : shader_sources
  sources += custom_target(s,
    command: glsl_preproc,
    depend_files: glsl_deps,
    env: python_env,
    input: s,
    output: s,
  )
endforeach