@@ -132,6 +132,10 @@ export default class Layer {
132
132
shouldUpdate ( oldProps , newProps ) {
133
133
// If any props have changed
134
134
if ( ! areEqualShallow ( newProps , oldProps ) ) {
135
+
136
+ if ( newProps . data . length !== oldProps . data . length ) {
137
+ this . setState ( { dataChanged : true } ) ;
138
+ }
135
139
return true ;
136
140
}
137
141
if ( newProps . deepCompare && ! isDeepEqual ( newProps . data , oldProps . data ) ) {
@@ -146,7 +150,9 @@ export default class Layer {
146
150
// Default implementation, all attributes will be updated
147
151
willReceiveProps ( newProps ) {
148
152
const { attributes} = this . state ;
149
- attributes . invalidateAll ( ) ;
153
+ if ( this . state . dataChanged ) {
154
+ attributes . invalidateAll ( ) ;
155
+ }
150
156
}
151
157
152
158
// gl context still available
@@ -298,7 +304,6 @@ export default class Layer {
298
304
updateAttributes ( props ) {
299
305
const { attributes} = this . state ;
300
306
const numInstances = this . getNumInstances ( props ) ;
301
-
302
307
// Figure out data length
303
308
attributes . update ( {
304
309
numInstances,
@@ -456,7 +461,7 @@ export default class Layer {
456
461
// "Capture" state as it will be set to null when layer is disposed
457
462
const { state} = this ;
458
463
const { primitive} = state ;
459
- const { self } = state ;
464
+
460
465
const drawType = primitive . drawType ?
461
466
gl . get ( primitive . drawType ) : gl . POINTS ;
462
467
@@ -468,20 +473,20 @@ export default class Layer {
468
473
469
474
if ( primitive . indices ) {
470
475
return ( ) => extension . drawElementsInstancedANGLE (
471
- drawType , numIndices , gl . UNSIGNED_SHORT , 0 , self . getNumInstances ( )
476
+ drawType , numIndices , gl . UNSIGNED_SHORT , 0 , state . layer . getNumInstances ( )
472
477
) ;
473
478
}
474
479
// else if this.primitive does not have indices
475
480
return ( ) => extension . drawArraysInstancedANGLE (
476
- drawType , 0 , numVertices / 3 , self . getNumInstances ( )
481
+ drawType , 0 , numVertices / 3 , state . layer . getNumInstances ( )
477
482
) ;
478
483
}
479
484
480
485
if ( this . state . primitive . indices ) {
481
486
return ( ) => gl . drawElements ( drawType , numIndices , gl . UNSIGNED_SHORT , 0 ) ;
482
487
}
483
488
// else if this.primitive does not have indices
484
- return ( ) => gl . drawArrays ( drawType , 0 , self . getNumInstances ( ) ) ;
489
+ return ( ) => gl . drawArrays ( drawType , 0 , state . layer . getNumInstances ( ) ) ;
485
490
}
486
491
487
492
checkProp ( property , propertyName ) {
0 commit comments