Implications on slowness ? -> JSON embed buffers are slow! consider using glTF binary #383
-
What does slow mean in this context ? Does anyone have any metrics ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
No exact metrics, but here's the additional load from the top of my head:
Some of this could be optimized, but I heavily focused on optimizing for regular/binary files so far. I don't have exact metrics at hand, though it would be interesting! The larger the meshes/vertices-/triangle counts (and thus glTF's buffers) the larger difference. For smallish objects there won't be much of a difference. To make exact metrics, you could make embed and glTF-binary variants of the same file, load them in a performance test and compare the numbers. hth |
Beta Was this translation helpful? Give feedback.
No exact metrics, but here's the additional load from the top of my head:
Some of this could be optimized, but I heavily focused on optimizing for regular/binary files so far.
I don't have exact metrics at hand, though it would be interesting! The larger the meshes/vertices-/triangle counts (and thus glTF's buffers) the larger difference. For smallish objects the…