Hi I've run into a compile error which I'm not sure how I'm supposed to cast to the type it expects . Any help?
src/main.zig:51:40: error: expected type '[*c]const [*c]const u8', found '*const *const [100:0]u8'
c.glShaderSource(vertex_shader, 1, &vertex_source, &vertex_source.len);
^~~~~~~~~~~~~~
src/main.zig:51:40: note: pointer type child '*const [100:0]u8' cannot cast into pointer type child '[*c]const u8'
src/main.zig:51:40: note: pointer type child '[100:0]u8' cannot cast into pointer type child 'u8'