Sigurd Meldgaard
e58764fbe0
Move texture registry ownership to platform view ( #4348 )
...
* Move texture registry ownership to platform view
This enables the texture registry to survive activity pause on Android.
2017-11-22 09:55:45 +01:00
Brian Osman
0a7155d4e1
Disable linear blending, use SkColorSpaceXformCanvas instead ( #4355 )
...
This retains gamut correction (adjusting colors for screens with different capabilities), but does all blending and interpolation with sRGB-encoded values. That matches the behavior expected by most users, as well as the behavior of nearly all other systems. It also greatly simplifies the EGL code.
A future Skia change will make this behavior more of a first-class citizen, so some of these implementation details will change again, but the behavior will not. The bulk of this change (elimination of complication from the GL surface code) is permanent - it's just the SkColorSpaceXformCanvas that will be replaced.
2017-11-14 13:33:26 -05:00
Jason Simmons
fe6f3ab33a
In GetTexture, do not insert missing IDs into the texture registry map ( #4339 )
...
Fixes https://github.com/flutter/flutter/issues/12924
2017-11-09 10:04:41 -08:00
mikejurka
0e8331aa1a
Fix low-res rasterized images on Fuchsia. ( #4325 )
...
Plumb through Scenic display metrics to use during
Preroll.
2017-11-08 14:59:54 -08:00
Mikkel Nygaard Ravn
8eb37a1289
Fix compile error in scene_update_context ( #4311 )
2017-11-02 12:22:32 +01:00
Chinmay Garde
9a960f82f5
Add texture support (eg video, camera) ( #4159 )
2017-11-02 10:57:29 +01:00
P.Y. Laligand
6fcb45991d
Move //dart to //third_party/dart. ( #4245 )
2017-10-19 01:20:38 -07:00
P.Y. Laligand
5fae5d52cf
Allow the project to be mapped to a location other than //flutter. ( #4203 )
...
This is for Fuchsia where we would like it to be located at //third_party/flutter.
2017-10-13 17:00:58 -07:00
Chinmay Garde
a55aa23078
Make flow::Layer::Paint const. ( #4200 )
2017-10-11 16:48:31 -07:00
Chinmay Garde
0b8efb62a6
Make flow::LayerBuilder virtual and plug in the default layer builder. ( #4199 )
2017-10-11 16:26:18 -07:00
Chinmay Garde
1793f494a3
Move layer tree construction into flow::LayerBuilder so alternate builders can be plugged in. ( #4197 )
2017-10-11 12:25:55 -07:00
Adam Barth
160a98c2b2
Update paths to Fuchsia libraries ( #4147 )
...
These libraries are in Topaz now.
2017-09-27 13:45:49 -07:00
Jason Simmons
191a2fab39
Set a higher filter quality for drawing raster cache images ( #4116 )
...
According to Skia, kLow offers a quality improvement with little cost over
the default kNone
Fixes https://github.com/flutter/flutter/issues/12091
2017-09-18 12:28:52 -07:00
George Kulakowski
550d0c6490
Rename Magenta to Zircon, along with associated abbreviations ( #4114 )
2017-09-14 22:49:46 -07:00
Michael Goderbauer
08961f8ec5
Format all c-like sources with clang-format ( #4088 )
...
* format
* license script adaptions
* updated licenses
* review comments
2017-09-12 15:36:20 -07:00
George Kulakowski
3aa7522c11
Rename ftl to fxl in Fuchsia specific code ( #4090 )
2017-09-11 15:58:48 -07:00
Petr Hosek
51f12604f7
Add missing virtual destructors to virtual classes ( #4083 )
...
These were previously undetected because Wdelete-non-virtual-dtor
didn't work with std::unique_ptr, but that's no longer the case.
2017-09-09 14:01:31 -07:00
Adam Barth
457f92ba48
Update paths for Mozart move ( #4081 )
2017-09-08 15:24:16 -07:00
Ian McKellar
0047b71aaf
Updates for the dart:fidl.internal rename and split. ( #4070 )
...
Now it references dart:zircon and dart:fuchsia.
2017-09-06 15:33:43 -07:00
Josh Gargus
321e68e8bf
Rename Mozart SceneManager to "Scenic". ( #4056 )
2017-09-01 17:40:27 -07:00
Adam Barth
107838c0a1
Fix Fuchsia build
2017-08-31 17:23:41 -07:00
Adam Barth
73554a1c32
Add //garnet ( #4043 )
...
This repository contains FTL now in the Fuchsia build.
2017-08-31 16:47:13 -07:00
mikejurka
3e245ae812
Fix crash when removing stories. ( #4003 )
...
Ensure that a Mozart EntityNode (that corresponds
to an ExportNode) is always released on the
Rasterizer thread.
MZ-259
2017-08-23 17:32:19 -07:00
Ian McKellar
f08b08417d
Update to new Dart FIDL bindings API. ( #3988 )
...
* Update to new Dart FIDL bindings API.
2017-08-22 13:32:46 -07:00
Jason Simmons
a7ae2abb59
Capture fractional pixel coordinates in the bounds of raster cache bitmaps ( #3974 )
...
The bitmap used to hold a prerolled image in the raster cache must have an
integer width/height in pixels. However, the picture used to draw the image
may have a non-integer width/height in physical coordinates and thus not
completely fill the bitmap. The compositor should only select the subset
of the bitmap that reflects the portion filled by the rendered picture.
2017-08-10 14:08:16 -07:00