summaryrefslogtreecommitdiffstats
path: root/glsl_builders.py
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-03-09 14:29:24 -0600
committerThaddeus Crews <repiteo@outlook.com>2024-03-09 14:29:24 -0600
commitd9fa40f2df44d775e82332577d44de402b23611f (patch)
treef9f95b4d52fbe79a9cd1ca1b0107b14cb7c9e45b /glsl_builders.py
parentf28964805e44a5c068ce8fd9d1e00697fcd922dc (diff)
downloadredot-engine-d9fa40f2df44d775e82332577d44de402b23611f.tar.gz
Enforce `\n` eol for Python writes
• Ensure utf-8 encoding if previously unspecified
Diffstat (limited to 'glsl_builders.py')
-rw-r--r--glsl_builders.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/glsl_builders.py b/glsl_builders.py
index ce52ec247d..406677ac9e 100644
--- a/glsl_builders.py
+++ b/glsl_builders.py
@@ -165,7 +165,7 @@ public:
#endif
"""
- with open(out_file, "w") as fd:
+ with open(out_file, "w", encoding="utf-8", newline="\n") as fd:
fd.write(shader_template)
@@ -224,7 +224,7 @@ static const char {out_file_base}[] = {{
#endif
"""
- with open(out_file, "w") as f:
+ with open(out_file, "w", encoding="utf-8", newline="\n") as f:
f.write(shader_template)