diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2020-01-26 18:02:54 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2020-01-26 18:02:54 -0800 |
commit | f07b311173e1231f6c0c85a47d6068de7aa00761 (patch) | |
tree | 08dbd7cf930602921e0d2504147701c82c3c4146 /src/Makefile.am | |
parent | 827f6626b672c817df23728742b0d76f215ca09e (diff) |
knobs: add experimental rudimentary knobs API
This is intended for modules to expose bindings for floats affecting
rendering output that may be varied at runtime frame-to-frame.
See the comment in knobs.h for more information.
This commit only introduces the concept, no modules utilize it yet.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 2dda6d5..cd7acf1 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,6 +1,6 @@ SUBDIRS = libs modules bin_PROGRAMS = rototiller -rototiller_SOURCES = fb.c fb.h fps.c fps.h rototiller.c rototiller.h sdl_fb.c settings.h settings.c setup.h setup.c threads.c threads.h util.c util.h +rototiller_SOURCES = fb.c fb.h fps.c fps.h knobs.h rototiller.c rototiller.h sdl_fb.c settings.h settings.c setup.h setup.c threads.c threads.h util.c util.h if ENABLE_DRM rototiller_SOURCES += drm_fb.c endif |