-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cgen: fix struct fixed array field init with default value
- Loading branch information
Showing
2 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
vlib/v/tests/structs/struct_field_fixed_array_init_with_default_value_test.v
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
type Mat4 = [16]f32 | ||
|
||
pub fn mat4(x0 f32, x1 f32, x2 f32, x3 f32, x4 f32, x5 f32, x6 f32, x7 f32, x8 f32, x9 f32, x10 f32, x11 f32, x12 f32, x13 f32, x14 f32, x15 f32) Mat4 { | ||
return [ | ||
x0, | ||
x1, | ||
x2, | ||
x3, | ||
x4, | ||
x5, | ||
x6, | ||
x7, | ||
x8, | ||
x9, | ||
x10, | ||
x11, | ||
x12, | ||
x13, | ||
x14, | ||
x15, | ||
]! | ||
} | ||
|
||
pub fn unit_m4() Mat4 { | ||
return mat4(f32(1), 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) | ||
} | ||
|
||
struct GameObject { | ||
mut: | ||
transform Mat4 = unit_m4() | ||
} | ||
|
||
fn test_struct_field_fixed_array_init_with_default_value() { | ||
p := GameObject{} | ||
println(p) | ||
assert p.transform[0] == 1.0 | ||
assert p.transform[1] == 0.0 | ||
assert p.transform[5] == 1.0 | ||
} |