Home | History | Annotate | Download | only in gl

Lines Matching defs:combined

217             SkMatrix combined;
218 combined.setConcat(matrix, coordChangeMatrix);
220 // combined.postScale(1,-1);
221 // combined.postTranslate(0,1);
222 combined.set(SkMatrix::kMSkewY,
223 combined[SkMatrix::kMPersp0] - combined[SkMatrix::kMSkewY]);
224 combined.set(SkMatrix::kMScaleY,
225 combined[SkMatrix::kMPersp1] - combined[SkMatrix::kMScaleY]);
226 combined.set(SkMatrix::kMTransY,
227 combined[SkMatrix::kMPersp2] - combined[SkMatrix::kMTransY]);
229 if (!fPrevMatrix.cheapEqualTo(combined)) {
230 uniformManager.setSkMatrix(fUni, combined);
231 fPrevMatrix = combined;