|
|
@@ -104,7 +104,12 @@ class Compiler:
|
|
|
head, out_filename = os.path.split(res)
|
|
|
out_filename, ext = os.path.splitext(out_filename)
|
|
|
|
|
|
- f = subprocess.call([LUAJIT, OPTION, path_in, path_out + "/" + out_filename + ".raw"]);
|
|
|
+ res_in = res
|
|
|
+ res_out = out_filename + ".raw"
|
|
|
+
|
|
|
+ print(res_out, "<=", res_in)
|
|
|
+
|
|
|
+ f = subprocess.call([LUAJIT, OPTION, path_in, path_out + "/" + res_out]);
|
|
|
|
|
|
# Compiles all the vertex shader resources in the repository
|
|
|
def compile_vertex_shaders(self):
|