From 157c9a13414b524ce98ea0ea07fce819efc1ba65 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alejandro=20Pi=C3=B1eiro?= Date: Fri, 13 Oct 2017 16:17:14 +0200 Subject: [PATCH] spirv: add DO NOT EDIT warning on generated spirv_info.c Reviewed-by: Eric Engestrom --- src/compiler/spirv/spirv_info_c.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/compiler/spirv/spirv_info_c.py b/src/compiler/spirv/spirv_info_c.py index c5e11dfc837..11235cfa3e4 100644 --- a/src/compiler/spirv/spirv_info_c.py +++ b/src/compiler/spirv/spirv_info_c.py @@ -51,7 +51,10 @@ def parse_args(): p.add_argument("out") return p.parse_args() -TEMPLATE = Template(COPYRIGHT + """\ +TEMPLATE = Template("""\ +/* DO NOT EDIT - This file generated automatically by spirv_info_c.py script */ + +""" + COPYRIGHT + """\ #include "spirv_info.h" % for kind,values in info: -- 2.30.2