vertex shader
vsoutput vs_id( vsinput vx ) { vsoutput vs; vs.position = mul(vx.position, wvp); vs.color = color; vs.uv = vx.uv; return vs; }