Added inferred types and missing length function.

This commit is contained in:
2025-01-10 22:44:15 +01:00
parent 8bd766281e
commit ec31046d30
16 changed files with 218 additions and 13 deletions

View File

@@ -401,6 +401,10 @@ compile_file :: (compiler : *Shader_Compiler, paths : []string) -> Compile_Resul
check(*result);
codegen(*result);
if result.had_error {
return result;
}
for *file : result.files {
check_result := file.semantic_check_result;
if check_result.vertex_entry_point {