@genome-spy/app 0.22.0 → 0.22.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +3 -0
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -586,6 +586,9 @@ void main(void) {
586
586
  float semanticThresholdFactor = computeSemanticThresholdFactor();
587
587
  if (semanticThresholdFactor <= 0.0) {
588
588
  gl_PointSize = 0.0;
589
+ // Place the vertex outside the viewport. The default (0, 0) makes this super-slow
590
+ // on Apple Silicon. Probably related to the tile-based GPU architecture.
591
+ gl_Position = vec4(100.0, 0.0, 0.0, 0.0);
589
592
  // Exit early. MAY prevent some unnecessary calculations.
590
593
  return;
591
594
  }
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  },
8
8
  "contributors": [],
9
9
  "license": "BSD-2-Clause",
10
- "version": "0.22.0",
10
+ "version": "0.22.1",
11
11
  "main": "dist/index.js",
12
12
  "files": [
13
13
  "dist/"
@@ -27,7 +27,7 @@
27
27
  "@fortawesome/fontawesome-free": "^6.1.1",
28
28
  "@fortawesome/fontawesome-svg-core": "^6.1.1",
29
29
  "@fortawesome/free-solid-svg-icons": "^6.1.1",
30
- "@genome-spy/core": "^0.22.0",
30
+ "@genome-spy/core": "^0.22.1",
31
31
  "@reduxjs/toolkit": "^1.6.2",
32
32
  "idb": "^7.0.1",
33
33
  "lit": "^2.0.2",
@@ -37,5 +37,5 @@
37
37
  "redux-undo": "^1.0.1",
38
38
  "snarkdown": "^2.0.0"
39
39
  },
40
- "gitHead": "0584f32e402341b913b2cc43543c95ccbb7b846b"
40
+ "gitHead": "e1c2a7032abf1e2b4b9408a04b34391457ae24e2"
41
41
  }