Module: Mesa Branch: master Commit: 7bbcf3ac70933393dc9567e36a94fb4abc1748e7 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=7bbcf3ac70933393dc9567e36a94fb4abc1748e7
Author: Brian Paul <[email protected]> Date: Tue Jun 27 20:56:22 2017 -0600 scons: add code to generate format_fallback.c file Fixes: a1983223d8839a0c9 "mesa: Add _mesa_format_fallback_rgbx_to_rgba() [v2]" Reviewed-by: Roland Scheidegger <[email protected]> Reviewed-by: Eric Engestrom <[email protected]> Reviewed-by: Emil Velikov <[email protected]> --- src/mesa/SConscript | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/mesa/SConscript b/src/mesa/SConscript index fa4efe101b..b63e15a3f0 100644 --- a/src/mesa/SConscript +++ b/src/mesa/SConscript @@ -79,6 +79,13 @@ format_unpack = env.CodeGenerate( command = python_cmd + ' $SCRIPT ' + ' $SOURCE > $TARGET' ) +format_fallback = env.CodeGenerate( + target = 'main/format_fallback.c', + script = 'main/format_fallback.py', + source = 'main/formats.csv', + command = python_cmd + ' $SCRIPT ' + ' $SOURCE ' + ' $TARGET' +) + # # Assembly sources # _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
