Skip to content

Commit 59491e1

Browse files
Merge pull request #272266 from FlorianBorn71/AddTriangleCountToConversionInfoOutput
Add triangle count to conversion info output
2 parents d06fb38 + 457e5b0 commit 59491e1

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

articles/remote-rendering/how-tos/conversion/get-information.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Here's an example *info* file produced by converting a file called `buggy.gltf`:
106106
This section contains the provided filenames.
107107

108108
* `input`: The name of the source file.
109-
* `output`: The name of the output file, when the user has specified a nondefault name.
109+
* `output`: The name of the output file, when the user specifies a nondefault name.
110110

111111
### The *conversionSettings* section
112112

@@ -132,7 +132,7 @@ This section isn't present for point cloud conversions.
132132

133133
### The *inputStatistics* section
134134

135-
This section provides information about the source scene. There will often be discrepancies between the values in this section and the equivalent values in the tool that created the source model. Such differences are expected, because the model gets modified during the export and conversion steps.
135+
This section provides information about the source scene. There are often discrepancies between the values in this section and the equivalent values in the tool that created the source model. Such differences are expected, because the model gets modified during the export and conversion steps.
136136

137137
The content of this section is different for triangular meshes and point clouds.
138138

@@ -160,16 +160,18 @@ For point cloud conversions, this section contains only a single entry:
160160
This section records general information about the generated output.
161161

162162
* `conversionToolVersion`: Version of the model converter.
163-
* `conversionHash`: A hash of the data within the arrAsset that can contribute to rendering. Can be used to understand whether the conversion service has produced a different result when rerun on the same file.
163+
* `conversionHash`: A hash of the data within the arrAsset that can contribute to rendering. Can be used to understand whether the conversion service produces a different result when rerun on the same file.
164164

165165
### The *outputStatistics* section
166166

167167
This section records information calculated from the converted asset. Again, the section holds different information for triangular meshes and point clouds.
168168

169169
# [Triangular meshes](#tab/TriangularMeshes)
170170

171+
* `numPrimitives`: The overall number of triangles/lines in the converted model. This number contributes to the primitive limit in the [standard rendering server size](../../reference/vm-sizes.md#how-the-renderer-evaluates-the-number-of-primitives).
171172
* `numMeshPartsCreated`: The number of meshes in the arrAsset. It can differ from `numMeshes` in the `inputStatistics` section, because instancing is affected by the conversion process.
172173
* `numMeshPartsInstanced`: The number of meshes that are reused in the arrAsset.
174+
* `numMaterials`: The overall number of unique materials in the model, after [material deduplication](../../concepts/materials.md#material-de-duplication).
173175
* `recenteringOffset`: When the `recenterToOrigin` option in the [ConversionSettings](configure-model-conversion.md) is enabled, this value is the translation that would move the converted model back to its original position.
174176
* `boundingBox`: The bounds of the model.
175177

@@ -180,12 +182,6 @@ This section records information calculated from the converted asset. Again, the
180182
* `boundingBox`: The bounds of the model.
181183
---
182184

183-
## Deprecated features
184-
185-
The conversion service writes the files `stdout.txt` and `stderr.txt` to the output container, and these files had been the only source of warnings and errors.
186-
These files are now deprecated. Instead, use
187-
[result files](#information-about-a-conversion-the-result-file) for this purpose.
188-
189185
## Next steps
190186

191187
* [Model conversion](model-conversion.md)

0 commit comments

Comments
 (0)