1. e522ca5 fix winding bug in lineclipper by reed@android.com · 16 years ago
  2. e28ff55 retool clipping in hairlines to catch huge coordinates by reed@android.com · 16 years ago
  3. 909994f new scanconversion technique by reed@android.com · 16 years ago
  4. bb13586 fix typos in cubic clipper by reed@android.com · 16 years ago
  5. 3a0cd7f add explicit clamping after chopping w/ t to ensure we're in the clip by reed@android.com · 16 years ago
  6. 77f0ef7 add quadclipping utility, plus sample test by reed@android.com · 16 years ago
  7. 7014906 add lineclipper, and test case by reed@android.com · 16 years ago
  8. e72fee5 add onSendClickToChildren to views, so a view can capture all clicks. by reed@android.com · 16 years ago
  9. c6ddc11 use imageref_globalpool in samplepicture, to test flattening bitmaps by reed@android.com · 16 years ago
  10. 0db5a7f update dox for SkAvoidXfermode (as best I could) by reed@android.com · 16 years ago
  11. 5ebbe14 fix cheap calc of edgelist size by reed@android.com · 16 years ago
  12. e0f13ee default to not showing the (slow) overview slide: hit DELETE to invoke by reed@android.com · 16 years ago
  13. 161b00b add SkEvalCubicInterval by reed@android.com · 16 years ago
  14. 34245c7 add OVerView slide to samplecode by reed@android.com · 16 years ago
  15. 3f2025f rename gamma to table, since it is more general than just gamma by reed@android.com · 16 years ago
  16. 2ee7c64 update on boundary patches by reed@android.com · 16 years ago
  17. 4408cca add boundary patch experiment by reed@android.com · 16 years ago
  18. 80b4ebe first cut at a checkbox by reed@android.com · 16 years ago
  19. d2abab6 first cut at rubber-sheet warping by reed@android.com · 16 years ago
  20. 837cf78 experiment by reed@android.com · 16 years ago
  21. 8789999 clean up fix to drawBitmapRect by reed@android.com · 16 years ago
  22. fead49e fix drawBitmapRect to not clip the src rect when computing the matrix by reed@android.com · 16 years ago
  23. e3839f8 require expat to use with animator by reed@android.com · 16 years ago
  24. 0f0cfae check-point for reviving animator by reed@android.com · 16 years ago
  25. d0d0e65 add new cubic test for overflow by reed@android.com · 16 years ago
  26. 8af9602 add sample for text rasterizer by reed@android.com · 16 years ago
  27. 63e34c6 capture drawings to png by reed@android.com · 16 years ago
  28. c4cae85 add BlitRow procs for 32->32, to allow for neon and other optimizations. by reed@android.com · 16 years ago
  29. 8e2af7e update sample to use new two-point-radial gradients from senorblanco!!! by reed@android.com · 16 years ago
  30. 7ab2cf9 #if 0 test code for blur, since it references a private header by reed@android.com · 16 years ago
  31. 4913b77 add tests for blurmask by reed@android.com · 16 years ago
  32. da449a3 update with tests for blur by reed@android.com · 16 years ago
  33. 0b9e2db use doubles in matrix.invert() to keep more precision, needed for subtle by reed@android.com · 16 years ago
  34. ed881c2 add neon opts for matrix procs by reed@android.com · 16 years ago
  35. 34e8580 update by reed@android.com · 16 years ago
  36. 47ca036 add by reed@android.com · 16 years ago
  37. 113244f add tests for extractAlpha by reed@android.com · 16 years ago
  38. a964028 http://code.google.com/p/skia/issues/detail?id=32 by reed@android.com · 16 years ago
  39. 2893728 fix gaps in antialiased hairlines (thanks to preda) by reed@android.com · 16 years ago
  40. 3c9b2a4 expand SkShader's flag kConstInY to 16 and 32 variants, allowing a shader by reed@android.com · 16 years ago
  41. ff3e92d show the hairlines after each test iteration by reed@android.com · 16 years ago
  42. c645996 special case 1x1 bitmaps when drawn as a shader (treat as a solid color) by reed@android.com · 16 years ago
  43. cafc9f9 fixes around isOpaque and dithering by reed@android.com · 16 years ago
  44. 755dd47 respect dither setting in index8->565 sprite case by reed@android.com · 16 years ago
  45. 92a50ea close out previous contour (so we don't miss the last segment) by reed@android.com · 16 years ago
  46. 6c5f6f2 add 'r' (rotate) 's' (scale) options to SampleApp to test those matrix ops on by reed@android.com · 16 years ago
  47. f7d5726 test for non-scaled bitmap tiles by reed@android.com · 16 years ago
  48. f549369 rename SK_BUILD_SUBPIXEL to SK_SUPPORT_LCDTEXT to better match the name of the by reed@android.com · 16 years ago
  49. 83f7bc3 remove conditional build flag for mipmaps by reed@android.com · 16 years ago
  50. 7a99eb1 add shaderprocs for all-in-one special blits (matrix+sampler) by reed@android.com · 16 years ago
  51. b4f404a handle cap==round for drawPoints by reed@android.com · 16 years ago
  52. b602b8e tweaks to 16bit shaders fix typo-bug in 4444 blend case by reed@android.com · 16 years ago
  53. 32a4249 make a deep copy in CreateCGImageRef if we're 565, but first upscale to 32bit. by reed@android.com · 16 years ago
  54. 1134426 respect preferred config when png is index-based by reed@android.com · 16 years ago
  55. 9dc5465 check if the encoder factory returned null by reed@android.com · 16 years ago
  56. 8433b5d more checks for null shapes in pictures by reed@android.com · 16 years ago
  57. 1c12abe fix gradients with alpha to convert to premul *after* the intermediate color by reed@android.com · 16 years ago
  58. 4516f47 use sk_bzero instead of bzero, since it isn't always available. by reed@android.com · 16 years ago
  59. 0ad336f add shape flatten so they work properly in pictures by reed@android.com · 16 years ago
  60. 09b84a0 add shape recording to pictuures (sans serialization) by reed@android.com · 16 years ago
  61. 0baf193 detect nearly translate-only matrices when drawing bitmaps (for speed) by reed@android.com · 16 years ago
  62. 048522d remove remaining references to porterduff by reed@android.com · 16 years ago
  63. 845fdac remove deprecated use of porterduff enum by reed@android.com · 16 years ago
  64. a0f5d15 move xfermode modes from porterduff into xfermode itself by reed@android.com · 16 years ago
  65. ad687ce add sample for mipmaps by reed@android.com · 16 years ago
  66. b3ade9d add optional Format* parameter to decoder helper functions. by reed@android.com · 16 years ago
  67. 5119bdb add shader flag kConstInY_Flag by reed@android.com · 16 years ago
  68. 1220e1c Some Linux / 64-bit compile fixes. by deanm@chromium.org · 16 years ago
  69. bbff1d5 add SkParsePath to go to/from SVG strings (e.g. "M0,0 L10,20") by reed@android.com · 16 years ago
  70. 9b46e77 fix dumpcanvas to recurse on pictures and shapes by reed@android.com · 16 years ago
  71. 6b82d1a add isConvex() hit to SkPath, to be used to speed up fills and opengl by reed@android.com · 16 years ago
  72. 24cfaa7 update includes for android for gl backend by reed@android.com · 16 years ago
  73. 44a6312 call notifyPixelsChanged() when the pages are flipped in pageflippixelref by reed@android.com · 16 years ago
  74. 88c2d8e animate matrixref in sample shapes by reed@android.com · 16 years ago
  75. aa5a7db move shapes subclasses into effects by reed@android.com · 16 years ago
  76. 671cd65 add SDL support by reed@android.com · 16 years ago
  77. 149e2f6 add SkSafeRef / SkSafeUnref as inline static functions, to use in place of our by reed@android.com · 16 years ago
  78. ba974cc add sample effects by reed@android.com · 16 years ago
  79. f48f281 shapes checkpoint: move matrix into groupshape and out of shape by reed@android.com · 16 years ago
  80. f76bacf add SkSize for dimensions by reed@android.com · 16 years ago
  81. 311c82d fix copyTo to only copy the minimum pixels per row, and to lock the src before by reed@android.com · 16 years ago
  82. a3c0588 add sample for gradients by reed@android.com · 16 years ago
  83. d252db0 API change: SkPath computeBounds -> getBounds by reed@android.com · 16 years ago
  84. aefd2bc Add SkChunkAlloc::unalloc() to undo the last allocation, useful if the caller wants to treat the allocats like temp memory (see PictureRecord) by reed@android.com · 16 years ago
  85. 8898363 add check/hack to avoid drawing outside of the clip for hairlines by reed@android.com · 16 years ago
  86. 49f0ff2 promote SkMask's rowBytes to 32bits, since its bounds is a 32bit rect by reed@android.com · 16 years ago
  87. 452f844 disable cubic test for now (currently broken) by reed@android.com · 16 years ago
  88. 3555591 add sanity checks to handles extremely large coordinates or filter margins. by reed@android.com · 16 years ago
  89. 791f5a1 Change (correct) SkImageRef's ownership rule for streams to the skia standard by reed@android.com · 16 years ago
  90. 590ef3f remember to specify the bloody font tag in the constructor! by reed@android.com · 16 years ago
  91. 330578d mac fonts sort of work now by reed@android.com · 16 years ago
  92. 5e5adfd migrate more legacy unittests into tests/ SkParse yet to be cleaned up by reed@android.com · 16 years ago
  93. 54043a3 patch SkMath.h to build in ARMv4 test code for mac fonts (disabled) by reed@android.com · 16 years ago
  94. 069b827 API cleanup: rename typeface Create to CreateFromName, and remove default arg by reed@android.com · 16 years ago
  95. ed67331 add initial unittest framework (tests) by reed@android.com · 16 years ago
  96. 3469c76 Handle kA8 bitmaps drawing through a matrix (was infinitely recursive) by reed@android.com · 16 years ago
  97. c07d23a Chop quads exactly on the clip bounds, so we don't spend CPU cycles walking them by reed@android.com · 16 years ago
  98. b08eb2b separate image encode and decode remove obsolete build-flag for encode by reed@android.com · 17 years ago
  99. 4bdd5f6 remove old test that assumed fBM had been decoded by reed@android.com · 17 years ago
  100. da342a8 update more sample code to new compose shader header by reed@android.com · 17 years ago