Closed Thirulogeswaren closed 1 month ago
changes removes the @ from variable names when converting metal to crossgl
metal
crossgl
// Structs struct VertexInput { vec3 position @Position; } // Structs struct VertexOutput { vec4 position @gl_Position; vec2 uv ; }
after changes:
// Structs struct VertexInput { vec3 position Position; } // Structs struct VertexOutput { vec4 position gl_Position; vec2 uv ; }
changes removes the @ from variable names when converting
metal
tocrossgl
after changes: