Example #1
0
    //简单的顶点着色器
    v2f vert(a2v v)
    {
        v2f output = new v2f();

        output.pos = Transform.MulMVPMat(v.pos);
        return(output);
    }