Give convert_glsl_folder's output more consistent names.

Don't replace dots with dashes in the output filenames for no reason.
Instead, give them names consistent with those generated by
`write_output_glsl`.
This commit is contained in:
Jim Blandy 2023-09-23 15:47:41 -07:00
parent bc0fc97b26
commit 7060246357
36 changed files with 1 additions and 1 deletions

View File

@ -789,7 +789,7 @@ fn convert_glsl_folder() {
&module,
&info,
&dest,
&file_name.replace('.', "-"),
&file_name,
&WgslOutParameters::default(),
);
}