chung-leong / pb2zig

Pixel Bender to Zig code translator
MIT License
19 stars 2 forks source link

Removed redundant qualifier during variable initialization #4

Closed chung-leong closed 1 year ago

chung-leong commented 1 year ago
var v1: @Vector(4, f32) = @Vector(4, f32){ 1, 2, 3, 4 };

can be translated as

var v1: @Vector(4, f32) = .{ 1, 2, 3, 4 };