1. 76f9e93 Added print out of SkShader information to debugger by robertphillips@google.com · 12 years ago
  2. 4d69227 Unreviewed mac build fix : Removing unused variable by sugoi@google.com · 12 years ago
  3. 8cec63e Added missing include in non GPU case. by sugoi@google.com · 12 years ago
  4. 848148e Fix bug in cubic-clipper (SkEdgeClipper). When we chop the cubic on Top/Bottom by reed@google.com · 12 years ago
  5. 781cc76 Implementation of the displacement effect (both CPU and GPU) by sugoi@google.com · 12 years ago
  6. d530253 To support alignment pragmas (for speed), we need to relax assumptions about by reed@google.com · 12 years ago
  7. 5c4d558 dashing asPoints could draw excessively long first dash by robertphillips@google.com · 12 years ago
  8. e7591bb call endContext() if we have to return false from setContext(), to keep the by mike@reedtribe.org · 12 years ago
  9. 7fc0e0a Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  10. 84831ac fix all the false --> NULL issues in the gradient code by humper@google.com · 12 years ago
  11. d386b0e remove namespace qualifier for feof; it's making android unhappy by humper@google.com · 12 years ago
  12. 027c102 Fix a problem in the matrix convolution image filter exposed by https://code.google.com/p/skia/source/detail?r=7152: when offsetting texture coordinates in a GrEffect, take the origin of the source bitmap origin into account, and flip Y coordinates when we need to. by senorblanco@chromium.org · 12 years ago
  13. a3bdc1a another false --> NULL return fix by humper@google.com · 12 years ago
  14. 2ad83ea false --> NULL for failure return by humper@google.com · 12 years ago
  15. 810ae48 move template specializations to inline functions in the header to make windows happy again by humper@google.com · 12 years ago
  16. 18a48c3 replace getline with fgets for portability by humper@google.com · 12 years ago
  17. 6d29eda remove dynamic_cast because rtti is disabled on some platforms (but not all??) by humper@google.com · 12 years ago
  18. 7f53503 Remove SK_DRAW_POS_TEXT_IGNORE_SUBPIXEL_LEFT_ALIGN_FIX. by bungeman@google.com · 12 years ago
  19. 7af56be Runtime configuration system for skia. This will allow developers to control settings at launch time without relying on compile-time flags or recompilation. It can be used to turn features on and off, as well as to control numeric quantities to 'tune' algorithms. Once I make sure it's working across all platforms I'll send out a quick tutorial on its use. by humper@google.com · 12 years ago
  20. 50dd410 Make SkScalerContextRec::getMatrixFrom2x2 more direct. by bungeman@google.com · 12 years ago
  21. c62b726 Fix uninitialized memory issue by robertphillips@google.com · 12 years ago
  22. 00835cc Fix debug build after r7153 (removed param referenced in assertion) by bsalomon@google.com · 12 years ago
  23. e197cbf Change signature of SkShader::asNewEffect(), implement for SkBitmapProcShader. by bsalomon@google.com · 12 years ago
  24. 47ebbcc Use the NDK's cpu-features library when building skia for Chromium/Android. by digit@google.com · 12 years ago
  25. 61be794 Fix typo bug caught by mac warn-as-error (= should have been &=). by bsalomon@google.com · 12 years ago
  26. 0263fcd Implement getConstantColorComponents() for matrix convolution. by bsalomon@google.com · 12 years ago
  27. 371e105 Add GrEffect::updateKnownColorComponents(). It is used to determine whether the output of an effect has a constant output value for r,g,b, or a. by bsalomon@google.com · 12 years ago
  28. 33cdbde Fix leaks in blurrect benchs and gm. by bsalomon@google.com · 12 years ago
  29. c18143e SkImageDecoder_WIC should work on Win7 with Win8 SDK. by bungeman@google.com · 12 years ago
  30. 50db75c Make GrEffect::textureAccess non-virtual. Require subclasses to append their GrTAs. by bsalomon@google.com · 12 years ago
  31. 55e4a20 Remove non-destructive playback from GrIODB. by bsalomon@google.com · 12 years ago
  32. 171f5c7 Rename onFilterImageGPU to filterImageGPU(), to match skia convention. No change in functionality. by senorblanco@chromium.org · 12 years ago
  33. 091f51b DirectWrite generatePath must transform the path by the current matrix. by bungeman@google.com · 12 years ago
  34. 59a6a2b Fix assertion caused by change in 7117. by bungeman@google.com · 12 years ago
  35. 99452e6 Properly reject clipped out draws in BBox pictures. by bungeman@google.com · 12 years ago
  36. 358e427 Remove default clip/drawstate in GrIODB. by bsalomon@google.com · 12 years ago
  37. 13ac3a3 Fix incorrect sample cnt assert by bsalomon@google.com · 12 years ago
  38. e490420 Ensure that SkMemoryStream does not crash dereferencing fData. by scroggo@google.com · 12 years ago
  39. 74dda90 This takes the convex path tesselator from the Android code and hooks it into a by jvanverth@google.com · 12 years ago
  40. b6c933c fix iOS build after adding modifierKeys to click events by reed@google.com · 12 years ago
  41. 4e73aa1 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  42. 50c79d8 Enable warnings-as-errors on Windows. by bsalomon@google.com · 12 years ago
  43. e378d83 translate modifier keys for xevents by reed@google.com · 12 years ago
  44. 6f47663 Fix macro redefinition warning on 10.6 bots in mesa code. by bsalomon@google.com · 12 years ago
  45. 3792418 fix linux build by reed@google.com · 12 years ago
  46. 72708fa fix win build by reed@google.com · 12 years ago
  47. 4d5c26d pass modifier keys to click events (e.g. control | shift etc.) by reed@google.com · 12 years ago
  48. 9aaf36d fix GPU drawing for 8 bit alpha bitmaps by humper@google.com · 12 years ago
  49. eb928ea Proposed fix to new stroking/path render selection system by robertphillips@google.com · 12 years ago
  50. b5715a1 fix spelling: cannonical -> canonical by reed@google.com · 12 years ago
  51. 4e8ef33 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  52. 070dcd8 abandon SK_IGNORE_TREAT_AS_SPRITE as a flag, and use SK_IGNORE_TRANS_CLAMP_FIX by reed@google.com · 12 years ago
  53. 140d728 fix warnings Review URL: https://codereview.appspot.com/7073044 by reed@google.com · 12 years ago
  54. a7830dc Revert part of r7047 to check Xoom failures by robertphillips@google.com · 12 years ago
  55. 0e51577 fix warning from scalar --> int32 conversion by humper@google.com · 12 years ago
  56. 9c4e5ac Cleaned up warnings in Windows build. by jvanverth@google.com · 12 years ago
  57. 57313f6 Fix warning-as-error for var used only in an assert (and therefore not in the release build). by bsalomon@google.com · 12 years ago
  58. 21cbec4 Remove GrTDArray. by bsalomon@google.com · 12 years ago
  59. 674a3a2 Attempt to fix NULL to intptr_t warning-as-error on mac build. by bsalomon@google.com · 12 years ago
  60. 05af1af eliminate all warnings in non-thirdparty code on mac by humper@google.com · 12 years ago
  61. f515ffc Show the paint's typeface information in the details pane of the debugger. by humper@google.com · 12 years ago
  62. e3453cb This CL introduces a new path renderer. by sugoi@google.com · 12 years ago
  63. ce1f3cc Fix the computed (new) inverse matrix when we detect that a shader's matrix by reed@google.com · 12 years ago
  64. 8ae714b Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  65. 7c7292c Added a new function to directly generate a blurred rectangle analytically. by humper@google.com · 12 years ago
  66. d96d17b Remove SkRefPtr by vandebo@chromium.org · 12 years ago
  67. 4a1362a add SK_IGNORE_FAST_SCALEMATRIX_INVERT guard for new invert code by reed@google.com · 12 years ago
  68. 34cccde Allow GrEffects with multiple textures. by bsalomon@google.com · 12 years ago
  69. 6eb549e Revert "Remove SkRefPtr" - r7021 by vandebo@chromium.org · 12 years ago
  70. e8a76ae Remove SkRefPtr by vandebo@chromium.org · 12 years ago
  71. 2fb96cc special-case matrix invert for translate and scale by reed@google.com · 12 years ago
  72. be61c05 Fix Android texture cacheID issue (npot flag not generated correctly) by robertphillips@google.com · 12 years ago
  73. ade109f Fix Android compiler warnings. by djsollen@google.com · 12 years ago
  74. d9f65e3 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  75. b16033a reorder internal files, in preparation for refactoring. no functional change. by mike@reedtribe.org · 12 years ago
  76. 5d688fb remove dead code from SkPath::addOval by mike@reedtribe.org · 12 years ago
  77. ae57358 use SkTreatAsSprite in SkDraw (with guard for chrome if needed) by reed@google.com · 12 years ago
  78. 5408a30 #undef SK_IGNORE_QUAD_STROKE_FIX, to enable the fix for stroked quads. by reed@google.com · 12 years ago
  79. 422188f Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  80. 7d474f8 The motivation for this changeset is to fix the following build failure in google3- by rmistry@google.com · 12 years ago
  81. ad51430 add unittest for SkTreatAsSprite by reed@google.com · 12 years ago
  82. 10a9fb8 Ensure that GrCacheID::Key instances are fully initialized. by bsalomon@google.com · 12 years ago
  83. a59df04 Delete no-longer compiled SkRectShape.cpp by epoger@google.com · 12 years ago
  84. 2157983 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  85. 3eafe9b Fix break from eariler change to colorfilters. clang's warnings found that some of these by mike@reedtribe.org · 12 years ago
  86. 61490fa fix warnings related to constness in overrides of SkColorFilter by mike@reedtribe.org · 12 years ago
  87. 14dd81d disable (using build-flag) change in 6937 until I can figure out how to rebaseline the self-test by mike@reedtribe.org · 12 years ago
  88. dec8125 fix strokes for quadratics. #define SK_IGNORE_QUAD_STROKE_FIX to by mike@reedtribe.org · 12 years ago
  89. 1a60dab Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  90. bcbef57 add SkRRect::inset(), which mimics stroking by mike@reedtribe.org · 12 years ago
  91. b89a03c Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  92. 5595af1 unify how we handle externally-provided storage in SkWriter32, with the goal by reed@google.com · 12 years ago
  93. 2859eb7 Sanitizing source files in Skia_Periodic_House_Keeping by skia.committer@gmail.com · 12 years ago
  94. 0797c2c Reland 6914 w/ fixes. by bsalomon@google.com · 12 years ago
  95. 0b6ad22 Revert 6914 to fix build issues. by bsalomon@google.com · 12 years ago
  96. 4b86e34 Simplify cache IDs and keys. by bsalomon@google.com · 12 years ago
  97. 6d06730 Accelerate AA filled rect drawing using drawIndexedInstances by robertphillips@google.com · 12 years ago
  98. 009bcca When doing a readback in SkGrPixelRef check whether the dst bmp was allocated. by bsalomon@google.com · 12 years ago
  99. 675de16 Adding support for new canvas API method clipRRect with rtree and tileGrid by junov@chromium.org · 12 years ago
  100. 30711b7 change SkMaskFilter methods to const, in preparation for making the class as by reed@google.com · 12 years ago