1. 8af9602 add sample for text rasterizer by reed@android.com · 15 years ago
  2. 63e34c6 capture drawings to png by reed@android.com · 15 years ago
  3. ea16cfa cache expanded rawcolor16 by reed@android.com · 15 years ago
  4. 261ae4d oops, restore previous fix to saveLayer calling through to save() by reed@android.com · 15 years ago
  5. 1fc4c60 move factory for 565 into its own file by reed@android.com · 15 years ago
  6. a5b741a don't call through to the inherited saveLayer, but just call save during record by reed@android.com · 15 years ago
  7. 725005e disable perspective-no-filter until we can fix the out-of-range indices by reed@android.com · 15 years ago
  8. f2afb67 fix base linux build, adding freetype support by reed@android.com · 15 years ago
  9. 2a645c9 add FilterRec() so it links again by reed@android.com · 15 years ago
  10. a8cf0aa use real strtof and snprintf to parse and dump floats by reed@android.com · 15 years ago
  11. bb9aea9 record dither setting so we can replay it when we (re)decode by reed@android.com · 15 years ago
  12. 3bbac13 update for blitrow_d32 procs by reed@android.com · 15 years ago
  13. c4cae85 add BlitRow procs for 32->32, to allow for neon and other optimizations. by reed@android.com · 15 years ago
  14. 9186103 don't put the class name in front of the method by reed@android.com · 15 years ago
  15. 6c59a17 clear the kHasSpan16 bit for two-point-radial, since we don't implement that by reed@android.com · 15 years ago
  16. 8e2af7e update sample to use new two-point-radial gradients from senorblanco!!! by reed@android.com · 15 years ago
  17. b53ebea update golden-master images for tilemodes, after the blur code (used for the by reed@android.com · 15 years ago
  18. 7ef071f Two-point radial gradient implementation. by senorblanco@chromium.org · 15 years ago
  19. 7ab2cf9 #if 0 test code for blur, since it references a private header by reed@android.com · 15 years ago
  20. 4913b77 add tests for blurmask by reed@android.com · 15 years ago
  21. 4560767 fix sumbuffer to initialize its top and left colum/row with zeros. Without this fix we were by reed@android.com · 15 years ago
  22. da449a3 update with tests for blur by reed@android.com · 15 years ago
  23. 0e3c664 use rowbytes instead of bounds.width() by reed@android.com · 15 years ago
  24. ab7ac02 more float/double precision tweaks by reed@android.com · 15 years ago
  25. 0b9e2db use doubles in matrix.invert() to keep more precision, needed for subtle by reed@android.com · 15 years ago
  26. ed881c2 add neon opts for matrix procs by reed@android.com · 15 years ago
  27. ebdeeb8 don't magically convert to hairline unless we're < 1.0 in both X and Y. The new routine both checks, by reed@android.com · 15 years ago
  28. e9d0060 add decode bench add dictionary for bench tools to see optional cmdline args by reed@android.com · 15 years ago
  29. 34e8580 update by reed@android.com · 15 years ago
  30. 47ca036 add by reed@android.com · 15 years ago
  31. de2e7fb more unittests (already found/fixed some bugs) by reed@android.com · 15 years ago
  32. e50025a rename std words to be UPPER CASE (ugh) by reed@android.com · 15 years ago
  33. 113244f add tests for extractAlpha by reed@android.com · 15 years ago
  34. 289e4fc add missing files by reed@android.com · 15 years ago
  35. 19a89f2 add boolean tests and IF/ELSE/END by reed@android.com · 15 years ago
  36. f56e295 experimental hack to write a forth engine to drive skia by reed@android.com · 15 years ago
  37. a03a701 return noErr in clickhandler, so we can get mousemoved events by reed@android.com · 15 years ago
  38. a964028 http://code.google.com/p/skia/issues/detail?id=32 by reed@android.com · 15 years ago
  39. 2893728 fix gaps in antialiased hairlines (thanks to preda) by reed@android.com · 15 years ago
  40. 3c9b2a4 expand SkShader's flag kConstInY to 16 and 32 variants, allowing a shader by reed@android.com · 15 years ago
  41. 2a4d1ff allow the gamma to be changed at runtime by reed@android.com · 15 years ago
  42. ff3e92d show the hairlines after each test iteration by reed@android.com · 15 years ago
  43. c645996 special case 1x1 bitmaps when drawn as a shader (treat as a solid color) by reed@android.com · 15 years ago
  44. 593847a fix overflow in qsort compare proc by reed@android.com · 15 years ago
  45. 0da41db add detach() method by reed@android.com · 15 years ago
  46. 1cdcb51 fix warning in sampler by reed@android.com · 15 years ago
  47. 69255fb update gm images with new corrected dithering by reed@android.com · 15 years ago
  48. cafc9f9 fixes around isOpaque and dithering by reed@android.com · 15 years ago
  49. c41513c Add a sanity check to MaskSuperBlitter::blitH(), to avoid a subsequent by senorblanco@chromium.org · 15 years ago
  50. d5ed395 Fix compliation on gcc-4.3 and ARMv5T by deanm@chromium.org · 15 years ago
  51. 755dd47 respect dither setting in index8->565 sprite case by reed@android.com · 15 years ago
  52. 8430cd1 Fix flipped text orientation on Windows. by deanm@chromium.org · 15 years ago
  53. b049eab update location of SkNWayCanvas.cpp by reed@android.com · 15 years ago
  54. 92a50ea close out previous contour (so we don't miss the last segment) by reed@android.com · 15 years ago
  55. 6c5f6f2 add 'r' (rotate) 's' (scale) options to SampleApp to test those matrix ops on by reed@android.com · 15 years ago
  56. a2b2c4b fix typo in matrix proc index computation, where we were always taking the by reed@android.com · 15 years ago
  57. 4c128c4 add method to compute max count for a given buffer size in the bitmap shader. by reed@android.com · 15 years ago
  58. a3122b9 bzero SkPaint in its constructor, to allow us to cleanly use memcmp in our by reed@android.com · 15 years ago
  59. 07d1f00 add special matrixprocs when the matrix is at most translate. These are faster by reed@android.com · 15 years ago
  60. f7d5726 test for non-scaled bitmap tiles by reed@android.com · 15 years ago
  61. 4d85059 add benchmark for repeat-tile bitmaps by reed@android.com · 15 years ago
  62. feef49c Add some SkASSERT's, to try to track down a reliability issue in Chrome. by senorblanco@chromium.org · 15 years ago
  63. 0c1cda7 remove unneeded (empty) virtual destructor by reed@android.com · 15 years ago
  64. 95dbb9c fixes wacky build on android. no other explanation received by reed@android.com · 15 years ago
  65. fb03cc7 fix validate() to note that an empty path can (by side-effect) have an empty but by reed@android.com · 15 years ago
  66. 558434a FreeType: fix garbled bitmap glyphs. by agl@chromium.org · 15 years ago
  67. 4484d23 Remove assertion in getAddrLCD. by agl@chromium.org · 15 years ago
  68. cd21c80 remove dead code by reed@android.com · 15 years ago
  69. e0d0899 FreeType: don't use bitmap strikes when antialiasing by agl@chromium.org · 15 years ago
  70. 152f748 more neon work: by reed@android.com · 15 years ago
  71. cf45bf8 update make for nwaycanvas remove obsolete opts_neon dir by reed@android.com · 15 years ago
  72. 29348cb add -forceFilter to bench tool move some utils out of effects/ by reed@android.com · 15 years ago
  73. 6123e47 add proper includes for arm optimizations by reed@android.com · 15 years ago
  74. 387359e add -config foo to restrict the output to just the specific config by reed@android.com · 15 years ago
  75. c714479 remove noisy font table tests from TextBench by reed@android.com · 15 years ago
  76. a0bd7f4 arm/neon optimizations for bitmap shader original version by ARM LIMITED 2009 by reed@android.com · 15 years ago
  77. afb055a update by reed@android.com · 15 years ago
  78. c9a1d4b add platformProcs() porting function by reed@android.com · 15 years ago
  79. eef375b clean up SkBitmapProcState in preparation for adding porting-layer functions by reed@android.com · 15 years ago
  80. ac98154 add GetFileName api to SkFontHost by reed@android.com · 15 years ago
  81. 61608aa fix #endif placement so it works when LCD support is not defined by reed@android.com · 15 years ago
  82. 4bda7a5 add opts for neon by reed@android.com · 15 years ago
  83. ed7bd9b add opts files to the make by reed@android.com · 15 years ago
  84. 7d2e322 add optimization table for blitproc functions by reed@android.com · 15 years ago
  85. b6137c3 remove auto-upscaling from base class (breaks model for allocators) but improve by reed@android.com · 15 years ago
  86. f18d876 Add runtime detection for missing subpixel support in FreeType. by agl@chromium.org · 15 years ago
  87. 5ebd88e Revert "Support subpixel text when FreeType is built without such support." by agl@chromium.org · 15 years ago
  88. ac3011c Support subpixel text when FreeType is built without such support. by agl@chromium.org · 15 years ago
  89. e2ca207 ws fixes use enum in getHinting() function, rather than hard-coded constants by reed@android.com · 15 years ago
  90. e4d0bc0 add filterrec logic for subpixel and slight-hinting by reed@android.com · 15 years ago
  91. e61238b Build fix: add FilterRec for Windows. by agl@chromium.org · 15 years ago
  92. bfbd4ff fix uninitialized library variable by reed@android.com · 15 years ago
  93. 41f8d48 remove const from function return-type signature (useless, and generates gcc by reed@android.com · 15 years ago
  94. 659aaf9 fix warnings (unused local var) by reed@android.com · 15 years ago
  95. bd2724f Fix valgrind warnings triggered in vertical mode. by agl@chromium.org · 15 years ago
  96. 36a4c2a Add SkFontHost::FilterRect() which allows the font host to filter our request by reed@android.com · 15 years ago
  97. f549369 rename SK_BUILD_SUBPIXEL to SK_SUPPORT_LCDTEXT to better match the name of the by reed@android.com · 15 years ago
  98. 01f82da remove crufty #undefs by reed@android.com · 15 years ago
  99. 9da1ae3 fix NaN in path iterator by reed@android.com · 15 years ago
  100. f036426 Typo fix. by agl@chromium.org · 15 years ago