diff options
author | Asheem Mamoowala <asheem.mamoowala@mapbox.com> | 2017-07-11 14:31:05 -0700 |
---|---|---|
committer | Asheem Mamoowala <asheem.mamoowala@mapbox.com> | 2017-07-17 11:36:34 -0700 |
commit | 3ecb9d607ff7104ec46870106fd2a2211acd9aaa (patch) | |
tree | e5a8479f22d1beb097f43bd4e36922d2cf4bd56e /test/tile | |
parent | 6a2f03077a0d32efafacde34eee1597a340a2d4f (diff) | |
download | qtlocation-mapboxgl-upstream/optimize-image-source.tar.gz |
[core][ios][android][macos] Use premultiplied image directly for RasterTile and ImageSource, un-premultiply in the shader for blendingupstream/optimize-image-source
Diffstat (limited to 'test/tile')
-rw-r--r-- | test/tile/raster_tile.test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tile/raster_tile.test.cpp b/test/tile/raster_tile.test.cpp index 025208c331..4680e7f485 100644 --- a/test/tile/raster_tile.test.cpp +++ b/test/tile/raster_tile.test.cpp @@ -60,7 +60,7 @@ TEST(RasterTile, onError) { TEST(RasterTile, onParsed) { RasterTileTest test; RasterTile tile(OverscaledTileID(0, 0, 0), test.tileParameters, test.tileset); - tile.onParsed(std::make_unique<RasterBucket>(UnassociatedImage{})); + tile.onParsed(std::make_unique<RasterBucket>(PremultipliedImage{})); EXPECT_TRUE(tile.isRenderable()); EXPECT_TRUE(tile.isLoaded()); EXPECT_TRUE(tile.isComplete()); |