Lines Matching defs:schur
3575 ExprP<float> schur = bindExpression("schur", ctx,
3580 ExprP<Vec2> t2 = t1 * schur;
3586 (invA * matB) * -schur);
3588 (matC * invA) * -schur);
3592 vec3(blockB[0], blockB[1], schur));
3619 ExprP<Mat2> schur = bindExpression("schur", ctx,
3622 invA + (invA * matB * schur * matC * invA));
3624 (-invA) * matB * schur);
3626 (-schur) * matC * invA);
3630 vec4(blockB[0][0], blockB[0][1], schur[0][0], schur[0][1]),
3631 vec4(blockB[1][0], blockB[1][1], schur[1][0], schur[1][1]));