Skip to content

Commit 7a34c3a

Browse files
committed
Merge pull request #23 from heshan0131/performance-fix
Performance fix
2 parents 90c74a0 + 8da8a80 commit 7a34c3a

File tree

3 files changed

+28
-9
lines changed

3 files changed

+28
-9
lines changed

src/layers/layer-manager.js

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ export function matchLayers(oldLayers, newLayers) {
3636
assert(oldLayer !== newLayer, 'Matching layer is same');
3737
// Copy state
3838
newLayer.state = state;
39+
state.layer = newLayer;
3940
// Keep a temporary ref to the old props, for prop comparison
4041
newLayer.oldProps = props;
4142
oldLayer.state = null;
@@ -51,6 +52,7 @@ export function initializeNewLayers(layers, {gl}) {
5152
// New layer, initialize it's state
5253
log(1, `initializing layer ${layer.props.id}`);
5354
layer.initializeLayer({gl});
55+
layer.state.layer = layer;
5456
}
5557
}
5658
}

src/layers/layer.js

+11-6
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,10 @@ export default class Layer {
132132
shouldUpdate(oldProps, newProps) {
133133
// If any props have changed
134134
if (!areEqualShallow(newProps, oldProps)) {
135+
136+
if (newProps.data.length !== oldProps.data.length) {
137+
this.setState({dataChanged: true});
138+
}
135139
return true;
136140
}
137141
if (newProps.deepCompare && !isDeepEqual(newProps.data, oldProps.data)) {
@@ -146,7 +150,9 @@ export default class Layer {
146150
// Default implementation, all attributes will be updated
147151
willReceiveProps(newProps) {
148152
const {attributes} = this.state;
149-
attributes.invalidateAll();
153+
if (this.state.dataChanged){
154+
attributes.invalidateAll();
155+
}
150156
}
151157

152158
// gl context still available
@@ -298,7 +304,6 @@ export default class Layer {
298304
updateAttributes(props) {
299305
const {attributes} = this.state;
300306
const numInstances = this.getNumInstances(props);
301-
302307
// Figure out data length
303308
attributes.update({
304309
numInstances,
@@ -456,7 +461,7 @@ export default class Layer {
456461
// "Capture" state as it will be set to null when layer is disposed
457462
const {state} = this;
458463
const {primitive} = state;
459-
const {self} = state;
464+
460465
const drawType = primitive.drawType ?
461466
gl.get(primitive.drawType) : gl.POINTS;
462467

@@ -468,20 +473,20 @@ export default class Layer {
468473

469474
if (primitive.indices) {
470475
return () => extension.drawElementsInstancedANGLE(
471-
drawType, numIndices, gl.UNSIGNED_SHORT, 0, self.getNumInstances()
476+
drawType, numIndices, gl.UNSIGNED_SHORT, 0, state.layer.getNumInstances()
472477
);
473478
}
474479
// else if this.primitive does not have indices
475480
return () => extension.drawArraysInstancedANGLE(
476-
drawType, 0, numVertices / 3, self.getNumInstances()
481+
drawType, 0, numVertices / 3, state.layer.getNumInstances()
477482
);
478483
}
479484

480485
if (this.state.primitive.indices) {
481486
return () => gl.drawElements(drawType, numIndices, gl.UNSIGNED_SHORT, 0);
482487
}
483488
// 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());
485490
}
486491

487492
checkProp(property, propertyName) {

src/util.js

+15-3
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,31 @@ function* valueIterator(obj) {
1717
}
1818

1919
function isPlainObject(o) {
20-
return typeof o === 'object' && o.constructor === Object;
20+
return o !== null && typeof o === 'object' && o.constructor === Object;
2121
}
2222

2323
// Shallow compare
24-
2524
export function areEqualShallow(a, b) {
25+
26+
if (a === b) {
27+
return true;
28+
}
29+
30+
if (typeof a !== 'object' || a === null || typeof b !== 'object' || b === null) {
31+
return false;
32+
}
33+
34+
if (Object.keys(a).length !== Object.keys(b).length) {
35+
return false;
36+
}
37+
2638
for (const key in a) {
2739
if (!(key in b) || a[key] !== b[key]) {
2840
return false;
2941
}
3042
}
3143
for (const key in b) {
32-
if (!(key in a) || a[key] !== b[key]) {
44+
if (!(key in a)) {
3345
return false;
3446
}
3547
}

0 commit comments

Comments
 (0)