Skip to content

Commit

Permalink
rebuilding dist and build libs
Browse files Browse the repository at this point in the history
- need videoLuma size to be as framesize (not divided by 4)
- fix for issue #344
  • Loading branch information
kalwalt committed Nov 22, 2023
1 parent 2c6f07d commit 6d5ee50
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build/artoolkitNFT.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/artoolkitNFT_embed_ES6_wasm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/artoolkitNFT_thread.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/artoolkitNFT_wasm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/artoolkitNFT_wasm.simd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ARToolkitNFT.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ARToolkitNFT_simd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ARToolkitNFT_td.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/js/threading_files/ARToolkitNFT_td.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/artoolkitNFT.api.js
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@

this.framesize = this.width * this.height;

this.videoLuma = new Uint8Array(this.framesize / 4);
this.videoLuma = new Uint8Array(this.framesize);

this.camera_mat = artoolkitNFT.getCameraLens(this.id);

Expand Down
2 changes: 1 addition & 1 deletion js/artoolkitNFT_ES6.api.js
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ class ARControllerNFT {

this.framesize = this.width * this.height;

this.videoLuma = new Uint8Array(this.framesize / 4);
this.videoLuma = new Uint8Array(this.framesize);

this.camera_mat = artoolkitNFT.getCameraLens(this.id);

Expand Down

0 comments on commit 6d5ee50

Please sign in to comment.