1. 20 11月, 2019 2 次提交
  2. 29 10月, 2019 1 次提交
  3. 22 10月, 2019 1 次提交
  4. 12 10月, 2019 1 次提交
  5. 08 10月, 2019 2 次提交
  6. 27 9月, 2019 1 次提交
  7. 12 7月, 2019 2 次提交
  8. 11 7月, 2019 1 次提交
  9. 09 7月, 2019 1 次提交
  10. 27 6月, 2019 1 次提交
  11. 22 5月, 2019 1 次提交
  12. 17 5月, 2019 2 次提交
  13. 14 5月, 2019 2 次提交
    • D
      update docs (#8928) · 1b649a57
      Dan Field 提交于
      1b649a57
    • M
      Only cache required frames (#8837) · 14c82d99
      Michael Klimushyn 提交于
      Remove the extra `decodedCacheRatioCap` parameter, and the
      `_frameBitmaps` member from `Codec`. This means that small looped images
      will consume more CPU but prevents us from hitting OOM exceptions based
      on trying to render multiple larger images.
      
      Also switch to fDisposalMethod for caching frames.
      
      Previously we looped over every single SkCodec::FrameInfo, tracked its
      `fRequiredFrame`, and then saved any frames matching those indeces.
      Doing this instead avoids that initialization loop and extra data
      structure.
      14c82d99
  14. 09 5月, 2019 1 次提交
    • K
      Expose API to decode images to specified dimensions (#8596) · e7e6689b
      Kaushik Iska 提交于
      * Dart side resize primitives exposed
      
      * Write the codec side changes
      
      * return un-scaled image if we can not allocate bitmap
      
      * Format _instantiateImageCodec calls to be single lined
      
      Move null check for size to be inner
      
      * Address CR comments and make image resize dimensions container
      
      * Round not trunc, also format
      
      * Add tests, remove ImageResizeDims from api surface
      
      * Make placeholder value public
      
      * Make the api side changes
      
      * Add a feature to resize pixels and also add tests
      
      * Fix grammar and add more info
      e7e6689b
  15. 08 5月, 2019 1 次提交
    • D
      new lints (#8849) · 2b1f9925
      Dan Field 提交于
      Dart lints added:
      * Avoid optional new
      * Avoid optional const
      * Prefer single quotes
      * Prefer default assignment `=`
      2b1f9925
  16. 04 5月, 2019 1 次提交
  17. 27 4月, 2019 1 次提交
  18. 24 4月, 2019 1 次提交
  19. 23 4月, 2019 3 次提交
  20. 12 4月, 2019 1 次提交
  21. 11 4月, 2019 1 次提交
  22. 06 4月, 2019 1 次提交
  23. 26 3月, 2019 1 次提交
  24. 23 3月, 2019 1 次提交
  25. 01 3月, 2019 1 次提交
  26. 14 2月, 2019 2 次提交
  27. 30 1月, 2019 1 次提交
  28. 15 1月, 2019 3 次提交
  29. 11 1月, 2019 1 次提交
  30. 22 12月, 2018 1 次提交
    • G
      Support user-provided font-fallback. (#7241) · 215ca156
      Gary Qian 提交于
      * Support user-provided font-fallback.
      
      * Use tonic to pass to native
      
      * Handle font families as a fallback vector in LibTxt
      
      * Fix docs
      
      * Concatentate fontFamily lists in dart before passing to engine
      
      * Fix formatting
      
      * Reworked font family matching to search all managers
      
      * Fix formatting
      
      * Proper toString null checking to keep format consistent
      
      * Formatting
      
      * Move _listEquals out of textstyle as it is not specific to TextStyle and will later be used for paragraphStyle too
      215ca156