1. 13 6月, 2018 3 次提交
  2. 11 6月, 2018 1 次提交
  3. 10 6月, 2018 1 次提交
  4. 09 6月, 2018 1 次提交
  5. 08 6月, 2018 1 次提交
    • G
      Fixing image encoding format conversion. (#5489) · 5d2f24aa
      Greg Spencer 提交于
      On a Linux host, we were having to convert the type of the bitmap to N32, but we weren't also fixing the channel order to RGBA, so consequently we were getting BGRA when the API was asking for RGBA. This forces the color format to be RGBA when that is what is asked for.
      
      We weren't needing to do conversion on macOS, so macOS was always getting RGBA.
      5d2f24aa
  6. 07 6月, 2018 2 次提交
  7. 05 6月, 2018 1 次提交
  8. 31 5月, 2018 1 次提交
  9. 30 5月, 2018 1 次提交
  10. 23 5月, 2018 2 次提交
  11. 22 5月, 2018 1 次提交
  12. 19 5月, 2018 1 次提交
  13. 18 5月, 2018 3 次提交
  14. 17 5月, 2018 2 次提交
  15. 15 5月, 2018 1 次提交
  16. 12 5月, 2018 1 次提交
  17. 11 5月, 2018 2 次提交
  18. 10 5月, 2018 1 次提交
  19. 04 5月, 2018 1 次提交
    • A
      Roll dart sdk to e6d7d67f4b35556805dd083fed15bf3ed41f7e33. (#5165) · 9e4c5d0e
      Alexander Aprelev 提交于
      * Roll dart sdk to e6d7d67f4b35556805dd083fed15bf3ed41f7e33.
      
      Changes since last dart roll:
      
      ```
      e6d7d67f4b Revert 4f18af12c7c6d53f02cf32cb9b5ea848b86e1d77 as it causes test breakages.
      4877587346 [GN] Uses dart_action.gni instead of compiled_action.gni.
      4b89ba24fb Meta CHANGELOG markdown cleanup.
      3d688deba7 Bump analysis server version to 1.20.2
      0dc81ae4eb Publish package:meta 1.1.5
      7e54844fe7 [vm] Fix build for gcc 7.3.0.
      9d10a6ad4a Issue 33034. Fix statement completion with missing condition right parenthesis.
      3fd2d5fb05 [vm] Use compiler warnings to insist callers check for errors from Dart_Invoke*/Load*/Compile*.
      afb490adbc [dart:io] Provide modern Dart-styled constants
      2929b71aa2 [kernel/vm] Address follow-up review comments for bytecode generation
      73768a5342 General TypeInfo and IdentifierContext cleanup
      e93b2ee250 Improve typedef identifier recovery
      46a9ed0617 Added example about calling a tear-off with a wrong-shape argument list
      0c839cf3f8 [fasta] Add 'as' expressions to the Forest API
      16f6ce2fee [release] Prepare changelog for 2.0.0-dev.53.0
      d13bf49870 Check type-variable bounds on generic methods
      794fe1e14f Add stacktrace tests for synchronous async
      fb779df11c [frontend-server] Disable depfile test on Windows.
      ```
      
      * Adjust gn-scripts to accommodate 487758734695e7a701325b80178465ebbd0fafdd refactoring.
      9e4c5d0e
  20. 02 5月, 2018 2 次提交
  21. 01 5月, 2018 3 次提交
    • C
      Use the GPU object constructor to create a gradient shader. (#5136) · 110bce4f
      Chinmay Garde 提交于
      Fixes build break introduced in 33aaf6fc.
      110bce4f
    • V
      Enable sweep gradients (#4950) · 33aaf6fc
      Victor Choueiri 提交于
      * Enable sweep gradients
      
      * Use _matrix4IsValid
      
      * Add assert for startAngle < endAngle
      
      * Use radians for startAngle and endAngle
      
      * Update AUTHORS
      
      * Better assert on matrix4IsValid
      33aaf6fc
    • G
      Adding Color.alphaBlend (#5119) · cf91f89c
      Greg Spencer 提交于
      This is helpful for some Material Design widgets, which are specified as a semi-transparent color over top of a "material". In some cases, the resulting alpha-blended color can be used instead of compositing an additional shape with an opacity.
      
      This new Color.alphaBlend function mimics the alpha blending function, and creates the resulting combined color. The optimization only works for solid color shapes that have the same geometry, of course.
      cf91f89c
  22. 28 4月, 2018 1 次提交
  23. 27 4月, 2018 1 次提交
    • J
      Create message response external typed data objects as Uint8Lists (#5101) · b6be9377
      Jason Simmons 提交于
      PlatformMessageResponseDart will wrap large responses in Dart external typed
      data objects in order to avoid copying the data into a new buffer.
      
      Previously these objects were created with the Dart_TypedData_kByteData type.
      A weak persistent handle is then associated with the ByteData to provide a
      finalizer that deletes the raw buffer.  However, the Dart VM could call
      finalizer on the ByteData even if references still existed to the Dart ByteBuffer
      object backing the ByteData.  The ByteBuffer would then be referencing a deleted
      raw buffer.
      
      This PR prevents that scenario by creating a Dart_TypedData_kUint8 object,
      attaching the finalizer to that object, and then wrapping it in a ByteData.
      b6be9377
  24. 26 4月, 2018 2 次提交
    • D
      Path metrics/getBounds/combinations again (#4957) · c249b702
      Dan Field 提交于
      * add path measure
      
      * fix typo
      
      * getBound and addPathWithMatrix
      
      * Add myself to Authors, add PathOps
      
      * fix linting issues
      
      * update licenses_flutter to add new files
      
      * Use matrix4 instead of matrix3 for consistency/interop
      
      * put pubspec back
      
      * fix bug in getSegment
      
      * fix typo
      
      * Add return value for PathOp
      
      * refactoring from review
      
      * refactoring from review - still TBD on computeMetrics()
      
      * add doc
      
      * lint issue
      
      * fix computeMetrics, add Path.from
      
      * add missing wireup for clone
      
      * change PathMetrics to iterable, fix bug with angle on Tangent
      
      * prefer std::make_unique
      
      * cleanup docs
      
      * add path measure
      
      * fix typo
      
      * getBound and addPathWithMatrix
      
      * Add myself to Authors, add PathOps
      
      * fix linting issues
      
      * update licenses_flutter to add new files
      
      * Use matrix4 instead of matrix3 for consistency/interop
      
      * put pubspec back
      
      * fix bug in getSegment
      
      * fix typo
      
      * Add return value for PathOp
      
      * refactoring from review
      
      * refactoring from review - still TBD on computeMetrics()
      
      * add doc
      
      * lint issue
      
      * fix computeMetrics, add Path.from
      
      * add missing wireup for clone
      
      * change PathMetrics to iterable, fix bug with angle on Tangent
      
      * prefer std::make_unique
      
      * cleanup docs
      
      * fix iterator bug
      
      * remove unnecessary clone for computeMetrics
      
      * fix some doc issues
      
      * fix PathMeasure iterator, extendWithPath, isClosed, and pubspec.lock
      
      * get rid of orElse; use StateException
      
      * StateError, not StateException
      
      * doc improvements and nits
      
      * add unit tests, fix bugs found during testing
      
      * fix two uncommited doc changes
      
      * one more
      
      * change sign of tangent angle, update docs
      
      * update unit tests for inverted angle
      
      * update tangent to include vector
      
      * Doc fixes
      
      * Fix MSVC compilation and unit test
      c249b702
    • J
      Throw an exception if a secondary isolate tries to send a platform message (#5069) · 8da9398e
      Jason Simmons 提交于
      Platform messages are only support in the UI isolate.  Secondary isolates
      do not have a window that can receive incoming messages, and outgoing messages
      are not tagged with a destination isolate and thus will always be dispatched
      to the UI isolate.
      
      Fixes https://github.com/flutter/flutter/issues/16846
      8da9398e
  25. 25 4月, 2018 1 次提交
  26. 24 4月, 2018 3 次提交