intel/isl/format: Dedent the template in gen_format_layout.py
authorJason Ekstrand <jason.ekstrand@intel.com>
Thu, 22 Jun 2017 18:27:04 +0000 (11:27 -0700)
committerJason Ekstrand <jason.ekstrand@intel.com>
Sun, 23 Jul 2017 03:59:22 +0000 (20:59 -0700)
This makes it much easier to edit the template and doesn't really dirty
the python all that much.

Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
src/intel/isl/gen_format_layout.py

index f52e45499750db439a1dc4b3bee88c65e4c466d2..aa4e2d8cb9cebe1e1afac8aaf04d8b0886889d9f 100644 (file)
@@ -32,64 +32,63 @@ from mako import template
 # Load the template, ensure that __future__.division is imported, and set the
 # bytes encoding to be utf-8. This last bit is important to getting simple
 # consistent behavior for python 3 when we get there.
-TEMPLATE = template.Template(
-    text=textwrap.dedent("""\
-        /* This file is autogenerated by gen_format_layout.py. DO NOT EDIT! */
-
-        /*
-         * Copyright 2015 Intel Corporation
-         *
-         *  Permission is hereby granted, free of charge, to any person obtaining a
-         *  copy of this software and associated documentation files (the "Software"),
-         *  to deal in the Software without restriction, including without limitation
-         *  the rights to use, copy, modify, merge, publish, distribute, sublicense,
-         *  and/or sell copies of the Software, and to permit persons to whom the
-         *  Software is furnished to do so, subject to the following conditions:
-         *
-         *  The above copyright notice and this permission notice (including the next
-         *  paragraph) shall be included in all copies or substantial portions of the
-         *  Software.
-         *
-         *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-         *  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-         *  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
-         *  THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-         *  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-         *  FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
-         *  IN THE SOFTWARE.
-         */
-
-        #include "isl/isl.h"
-
-        const struct isl_format_layout
-        isl_format_layouts[] = {
-        % for format in formats:
-          [ISL_FORMAT_${format.name}] = {
-            .format = ISL_FORMAT_${format.name},
-            .name = "ISL_FORMAT_${format.name}",
-            .bpb = ${format.bpb},
-            .bw = ${format.bw},
-            .bh = ${format.bh},
-            .bd = ${format.bd},
-            .channels = {
-            % for mask in ['r', 'g', 'b', 'a', 'l', 'i', 'p']:
-              <% channel = getattr(format, mask, None) %>\\
-              % if channel.type is not None:
-                .${mask} = { ISL_${channel.type}, ${channel.size} },
-              % else:
-                .${mask} = {},
-              % endif
-            % endfor
-            },
-            .colorspace = ISL_COLORSPACE_${format.colorspace},
-            .txc = ISL_TXC_${format.txc},
-          },
-
-        % endfor
-        };
-    """),
-    future_imports=['division'],
-    output_encoding='utf-8')
+TEMPLATE = template.Template(future_imports=['division'],
+                             output_encoding='utf-8',
+                             text="""\
+/* This file is autogenerated by gen_format_layout.py. DO NOT EDIT! */
+
+/*
+ * Copyright 2015 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ */
+
+#include "isl/isl.h"
+
+const struct isl_format_layout
+isl_format_layouts[] = {
+% for format in formats:
+  [ISL_FORMAT_${format.name}] = {
+    .format = ISL_FORMAT_${format.name},
+    .name = "ISL_FORMAT_${format.name}",
+    .bpb = ${format.bpb},
+    .bw = ${format.bw},
+    .bh = ${format.bh},
+    .bd = ${format.bd},
+    .channels = {
+    % for mask in ['r', 'g', 'b', 'a', 'l', 'i', 'p']:
+      <% channel = getattr(format, mask, None) %>\\
+      % if channel.type is not None:
+        .${mask} = { ISL_${channel.type}, ${channel.size} },
+      % else:
+        .${mask} = {},
+      % endif
+    % endfor
+    },
+    .colorspace = ISL_COLORSPACE_${format.colorspace},
+    .txc = ISL_TXC_${format.txc},
+  },
+
+% endfor
+};
+""")
 
 
 class Channel(object):