I have the following GLSL code in the fragment shader when doing lighting: mat4 mvi = transpose(inverse(modelViewMatrix)); vec3 my_normal = mat3(mvi) * normal; How to convert this code into WGSL code?