forked from mikocml/jsartoolkit5
-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
implementing NFT with threading support with emscripten #2
Open
kalwalt
wants to merge
24
commits into
fixing-nft
Choose a base branch
from
nft-with-threads
base: fixing-nft
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
162bc15
implementing NFT with threading support
kalwalt 41eb40a
trackingInitGetResult instead of kpmGetResult
kalwalt ec03ab4
adding quit tracking and other stuf for the transpose matrix
kalwalt 6f46ad1
improved getNFTMarkerInfo with threaded tracking
kalwalt a3e19c3
tested a different conditional
kalwalt f5694a9
adding pthreads also in the bytecode libs
kalwalt 218cb8f
simplifying part of the code
kalwalt 0914d82
this solved the issue: arc->videoFrame instead of arc->videoLuma !!!
kalwalt 359292b
cleaning the code
kalwalt 67b0413
restoring the previous conditional
kalwalt 07a85f2
re-adding wasm support
kalwalt 2cb54f9
fix for threejs_from_scratch.html
kalwalt 5918469
new setupAR2Threads function threads initialization only for NFT
kalwalt 966d6d7
optimization in dataHeap transfer, from comment https://github.com/je…
kalwalt 14f67b5
transferDataToHeap also for debug lib version
kalwalt 04233e1
new libjpeg and related changes
kalwalt f86f165
deleting files ARMarkerNFT
kalwalt 43ecde3
added NFT example with a gltf model
kalwalt 08eecc4
gltf model needs some lights
kalwalt e0beb69
gltf Duck example for NFT
kalwalt cb6d29e
scaling and repositioning the model solved the issue view
kalwalt e9a88e3
fix for CesiumMan example
kalwalt e50e52b
fix gitmodules
kalwalt 759c846
fix to build with emsdk 3.1.20
kalwalt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the problem is this we do not pass any data to the EM_ASM
if i change the variable in the conditional for example:
if (pageNo >= 0)
we get data but with that Threejs error, and the sphere appear and disappears. MAybe we should use another condition or what else?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
don't remember why i put this:
if (pageNo >= 0 && pageNo == arc->detectedPage) {
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe it should be
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would rather ask why appears and disappears. As you put it, it is a hack that might work for some but not all cases. I would prefer to understand why pageNo should be as condition.
However, this might not have sense:
pageNo >= 0 && pageNo == arc->detectedPage
. I can see some contradictory behaviour there.If you leave it as
arc->detectedPage > -1
, does it mean thatpageNo >= 0
? For what I read from the code,detectedPage
was a sort of flag for different states. What meant -1 status fordetectedPage
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the flagging I found for detectedPage: