Lines Matching defs:schur
3860 ExprP<float> schur = bindExpression("schur", ctx,
3865 ExprP<Vec2> t2 = t1 * schur;
3871 (invA * matB) * -schur);
3873 (matC * invA) * -schur);
3877 vec3(blockB[0], blockB[1], schur));
3904 ExprP<Mat2> schur = bindExpression("schur", ctx,
3907 invA + (invA * matB * schur * matC * invA));
3909 (-invA) * matB * schur);
3911 (-schur) * matC * invA);
3915 vec4(blockB[0][0], blockB[0][1], schur[0][0], schur[0][1]),
3916 vec4(blockB[1][0], blockB[1][1], schur[1][0], schur[1][1]));