@@ -234,7 +234,7 @@ The following errors are currently used by OSPRay:
234234 OSP_INVALID_ARGUMENT an invalid argument was specified
235235 OSP_INVALID_OPERATION the operation is not allowed for the specified object
236236 OSP_OUT_OF_MEMORY there is not enough memory to execute the command
237- OSP_UNSUPPORTED_CPU the CPU is not supported (minimum ISA is SSE4.1 on x86_64 and NEON on Arm64 )
237+ OSP_UNSUPPORTED_CPU the CPU is not supported (minimum ISA is SSE4.1 on x86_64 and NEON on ARM64 )
238238 OSP_VERSION_MISMATCH a module could not be loaded due to mismatching version
239239 ---------------------- -------------------------------------------------------
240240 : Possible error codes, i.e., valid named constants of type ` OSPError ` .
@@ -1402,7 +1402,7 @@ All light sources accept the following parameters:
14021402
14031403 float intensity 1 intensity of the light (a factor)
14041404
1405- uchar intensityQuantity ` OSPIntensityQuantity ` to set the radiative
1405+ uchar intensityQuantity ` OSPIntensityQuantity ` to set the radiometric
14061406 quantity represented by ` intensity ` . The
14071407 default value depends on the light source.
14081408
@@ -1411,7 +1411,7 @@ All light sources accept the following parameters:
14111411 : Parameters accepted by all lights.
14121412
14131413In OSPRay the ` intensity ` parameter of a light source can correspond to
1414- different types of radiative quantities. The type of the value
1414+ different types of radiometric quantities. The type of the value
14151415represented by a light's ` intensity ` parameter is set using
14161416` intensityQuantity ` , which accepts values from the enum type
14171417` OSPIntensityQuantity ` . The supported types of ` OSPIntensityQuantity `
@@ -1437,7 +1437,7 @@ specific light source).
14371437 OSP_INTENSITY_QUANTITY_SCALE a linear scaling factor for light sources with a
14381438 built-in quantity (e.g., ` HDRI ` , or ` sunSky ` ).
14391439 ---------------------------------- ----------------------------------------------------
1440- : Types of radiative quantities used to interpret a light's ` intensity ` parameter.
1440+ : Types of radiometric quantities used to interpret a light's ` intensity ` parameter.
14411441
14421442The following light types are supported by most OSPRay renderers.
14431443
@@ -1597,7 +1597,7 @@ shadows.
15971597The HDRI light is a textured light source surrounding the scene and
15981598illuminating it from infinity. It is created by passing the type string
15991599"` hdri ` " to ` ospNewLight ` . The values of the HDRI correspond to radiance
1600- and therfore the HDRI light only accepts ` OSP_INTENSITY_QUANTITY_SCALE `
1600+ and therefore the HDRI light only accepts ` OSP_INTENSITY_QUANTITY_SCALE `
16011601as ` intensityQuantity ` parameter value.
16021602In addition to the [ general parameters] ( #lights ) the HDRI light
16031603supports the following special parameters:
@@ -1641,9 +1641,9 @@ string "`sunSky`" to `ospNewLight`. The sun-sky light surrounds the
16411641scene and illuminates it from infinity and can be used for rendering
16421642outdoor scenes. The radiance values are calculated using the
16431643Hošek-Wilkie sky model and solar radiance function. The underlying model
1644- of the sun-sky light returns radiance values and therfore the light
1644+ of the sun-sky light returns radiance values and therefore the light
16451645only accepts ` OSP_INTENSITY_QUANTITY_SCALE ` as ` intensityQuantity `
1646- parameter value. To recale the returned radiance of the sky model
1646+ parameter value. To rescale the returned radiance of the sky model
16471647the default value for the ` intensity ` parameter is set to ` 0.025 ` .
16481648In addition to the [ general parameters] ( #lights ) the
16491649following special parameters are supported:
@@ -3095,7 +3095,7 @@ through the command line, the following parameters can be set:
30953095
30963096 uint commandBufferSize 512\ MiB Set the max command buffer size
30973097 to allow. Units are in MiB. Max
3098- size is 1.8GiB
3098+ size is 1.8\ GiB
30993099
31003100 uint maxInlineDataSize 32\ MiB Set the max size of an OSPData
31013101 which can be inline'd into the
@@ -3122,7 +3122,7 @@ MPI Distributed Rendering
31223122
31233123While MPI Offload rendering is used to transparently distribute
31243124rendering work without requiring modification to the application, MPI
3125- Distributed rendering is targetted at use of OSPRay within MPI-parallel
3125+ Distributed rendering is targeted at use of OSPRay within MPI-parallel
31263126applications. The MPI distributed device can be selected by loading the
31273127` mpi ` module, and manually creating and using an instance of the
31283128` mpiDistributed ` device:
@@ -3209,7 +3209,7 @@ occlusion, each rank's data can overlap. To clip these non-owned overlap
32093209regions out a set of regions (the ` region ` parameter) can pass as a
32103210parameter to the ` OSPWorld ` being rendered. Each rank can specify one or
32113211more non-overlapping ` box3f ` 's which bound the portions of its local
3212- data which it is reponsible for rendering. See the
3212+ data which it is responsible for rendering. See the
32133213[ ospMPIDistributedTutorialStructuredVolume] ( https://github.com/ospray/ospray/blob/master/modules/mpi/tutorials/ospMPIDistributedTutorialStructuredVolume.cpp )
32143214for an example.
32153215
0 commit comments