@@ -6,7 +6,9 @@ defineSuite([
6
6
'Core/Cartesian3' ,
7
7
'Core/CesiumTerrainProvider' ,
8
8
'Core/Color' ,
9
+ 'Core/createGuid' ,
9
10
'Core/DistanceDisplayCondition' ,
11
+ 'Core/FeatureDetection' ,
10
12
'Core/Math' ,
11
13
'Core/NearFarScalar' ,
12
14
'Core/OrthographicOffCenterFrustum' ,
@@ -31,7 +33,9 @@ defineSuite([
31
33
Cartesian3 ,
32
34
CesiumTerrainProvider ,
33
35
Color ,
36
+ createGuid ,
34
37
DistanceDisplayCondition ,
38
+ FeatureDetection ,
35
39
CesiumMath ,
36
40
NearFarScalar ,
37
41
OrthographicOffCenterFrustum ,
@@ -65,19 +69,23 @@ defineSuite([
65
69
context = scene . context ;
66
70
camera = scene . camera ;
67
71
68
- return when . join (
69
- Resource . fetchImage ( './Data/Images/Green2x2.png' ) . then ( function ( result ) {
70
- greenImage = result ;
71
- } ) ,
72
- Resource . fetchImage ( './Data/Images/Blue2x2.png' ) . then ( function ( result ) {
73
- blueImage = result ;
74
- } ) ,
75
- Resource . fetchImage ( './Data/Images/White2x2.png' ) . then ( function ( result ) {
76
- whiteImage = result ;
77
- } ) ,
78
- Resource . fetchImage ( './Data/Images/Blue10x10.png' ) . then ( function ( result ) {
79
- largeBlueImage = result ;
80
- } ) ) ;
72
+ return FeatureDetection . supportsImageBitmapOptions ( )
73
+ . then ( function ( ) {
74
+ return when . join (
75
+ Resource . fetchImage ( './Data/Images/Green2x2.png' ) . then ( function ( result ) {
76
+ greenImage = result ;
77
+ } ) ,
78
+ Resource . fetchImage ( './Data/Images/Blue2x2.png' ) . then ( function ( result ) {
79
+ blueImage = result ;
80
+ } ) ,
81
+ Resource . fetchImage ( './Data/Images/White2x2.png' ) . then ( function ( result ) {
82
+ whiteImage = result ;
83
+ } ) ,
84
+ Resource . fetchImage ( './Data/Images/Blue10x10.png' ) . then ( function ( result ) {
85
+ largeBlueImage = result ;
86
+ } )
87
+ ) ;
88
+ } ) ;
81
89
} ) ;
82
90
83
91
afterAll ( function ( ) {
@@ -174,7 +182,7 @@ defineSuite([
174
182
expect ( b . horizontalOrigin ) . toEqual ( HorizontalOrigin . LEFT ) ;
175
183
expect ( b . verticalOrigin ) . toEqual ( VerticalOrigin . BOTTOM ) ;
176
184
expect ( b . scale ) . toEqual ( 2.0 ) ;
177
- expect ( b . image ) . toEqual ( greenImage . src ) ;
185
+ expect ( b . image ) . toEqual ( b . _imageId ) ;
178
186
expect ( b . color . red ) . toEqual ( 1.0 ) ;
179
187
expect ( b . color . green ) . toEqual ( 2.0 ) ;
180
188
expect ( b . color . blue ) . toEqual ( 3.0 ) ;
@@ -221,7 +229,7 @@ defineSuite([
221
229
expect ( b . horizontalOrigin ) . toEqual ( HorizontalOrigin . LEFT ) ;
222
230
expect ( b . verticalOrigin ) . toEqual ( VerticalOrigin . BOTTOM ) ;
223
231
expect ( b . scale ) . toEqual ( 2.0 ) ;
224
- expect ( b . image ) . toEqual ( greenImage . src ) ;
232
+ expect ( b . image ) . toEqual ( b . _imageId ) ;
225
233
expect ( b . color . red ) . toEqual ( 1.0 ) ;
226
234
expect ( b . color . green ) . toEqual ( 2.0 ) ;
227
235
expect ( b . color . blue ) . toEqual ( 3.0 ) ;
@@ -822,7 +830,7 @@ defineSuite([
822
830
823
831
expect ( scene ) . toRender ( [ 0 , 255 , 0 , 255 ] ) ;
824
832
825
- b . setImage ( largeBlueImage . src , largeBlueImage ) ;
833
+ b . setImage ( createGuid ( ) , largeBlueImage ) ;
826
834
expect ( scene ) . toRender ( [ 0 , 0 , 255 , 255 ] ) ;
827
835
} ) ;
828
836
@@ -834,8 +842,10 @@ defineSuite([
834
842
835
843
expect ( scene ) . toRender ( [ 0 , 255 , 0 , 255 ] ) ;
836
844
837
- billboards . textureAtlas . addImage ( largeBlueImage . src , largeBlueImage ) ;
838
- b . setImageSubRegion ( largeBlueImage . src , new BoundingRectangle ( 5.0 , 5.0 , 1.0 , 1.0 ) ) ;
845
+ var guid = createGuid ( ) ;
846
+
847
+ billboards . textureAtlas . addImage ( guid , largeBlueImage ) ;
848
+ b . setImageSubRegion ( guid , new BoundingRectangle ( 5.0 , 5.0 , 1.0 , 1.0 ) ) ;
839
849
expect ( scene ) . toRender ( [ 0 , 0 , 255 , 255 ] ) ;
840
850
} ) ;
841
851
0 commit comments