MemberIndex.cpp 1.2 KB

12345678910111213141516171819202122232425262728
  1. #if 0 // Disabled until updated to use current API.
  2. // Copyright 2019 Google LLC.
  3. // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
  4. #include "tools/fiddle/examples.h"
  5. // HASH=3bbf75f4748420810aa2586e3c8548d9
  6. REG_FIDDLE(MemberIndex, 256, 256, false, 0) {
  7. void draw(SkCanvas* canvas) {
  8. SkPaint black;
  9. black.setAntiAlias(true);
  10. black.setTextSize(48);
  11. SkPaint gray = black;
  12. gray.setColor(0xFF9f9f9f);
  13. SkScalar offset[] = { 1.5f, 1.5f, 20, 1.5f, 1.5f, 20, .03f, .01f, 2 };
  14. for (int i : { SkMatrix::kMScaleX, SkMatrix::kMSkewX, SkMatrix::kMTransX,
  15. SkMatrix::kMSkewY, SkMatrix::kMScaleY, SkMatrix::kMTransY,
  16. SkMatrix::kMPersp0, SkMatrix::kMPersp1, SkMatrix::kMPersp2 } ) {
  17. SkMatrix m;
  18. m.setIdentity();
  19. m.set(i, offset[i]);
  20. SkAutoCanvasRestore autoRestore(canvas, true);
  21. canvas->translate(22 + (i % 3) * 88, 44 + (i / 3) * 88);
  22. canvas->drawString("&", 0, 0, gray);
  23. canvas->concat(m);
  24. canvas->drawString("&", 0, 0, black);
  25. }
  26. }
  27. } // END FIDDLE
  28. #endif // Disabled until updated to use current API.