diff options
author | Asheem Mamoowala <asheem.mamoowala@mapbox.com> | 2017-06-20 11:09:19 -0700 |
---|---|---|
committer | Asheem Mamoowala <asheem.mamoowala@mapbox.com> | 2017-07-17 12:20:03 -0700 |
commit | 1d15ed64dcf78daa9459247127857513608c18ad (patch) | |
tree | 9ea07cfab134972c6b7f169b4153a881e9279fe6 /test | |
parent | b69f8338bbd18573b2a2a4282c4736f257526d03 (diff) | |
download | qtlocation-mapboxgl-1d15ed64dcf78daa9459247127857513608c18ad.tar.gz |
[core] Use shared pointer to manage Image source raster data and speed up change detection
Diffstat (limited to 'test')
-rw-r--r-- | test/style/source.test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/style/source.test.cpp b/test/style/source.test.cpp index 004ba18c5b..d576dc1e4a 100644 --- a/test/style/source.test.cpp +++ b/test/style/source.test.cpp @@ -535,7 +535,7 @@ TEST(Source, ImageSourceImageUpdate) { rgba.data[0] = 255; rgba.data[1] = 254; rgba.data[2] = 253; - rgba.data[3] = 128; + rgba.data[3] = 0; // Schedule an update test.loop.invoke([&] () { |