Skip to content
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

Fix various typos #621

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmake/PlatformSpecific.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ IF(APPLE)

SET(CMAKE_XCODE_ATTRIBUTE_SDKROOT macosx) # to silence sdk not found warning, just overrides CMAKE_OSX_SYSROOT, gets latest available

# set a precedence of sdk path over all other default search pathes
# set a precedence of sdk path over all other default search paths
SET(CMAKE_FIND_ROOT_PATH ${CMAKE_OSX_SYSROOT})

### options
Expand Down
2 changes: 1 addition & 1 deletion include/slg/utils/evalstack_funcs.cl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* limitations under the License. *
***************************************************************************/

// Macros used mostly for Texture and Material evluations
// Macros used mostly for Texture and Material evaluations

#define EvalStack_PushInt(a) { ((__global int *)evalStack)[*evalStackOffset] = a; *evalStackOffset = *evalStackOffset + 1; }
#define EvalStack_PopInt(a) { *evalStackOffset = *evalStackOffset - 1; a = ((__global int *)evalStack)[*evalStackOffset]; }
Expand Down
2 changes: 1 addition & 1 deletion release-notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* GPU out-of-core rendering now automatically disable Film GPU image pipeline to save more memory
* Added the support for Film-only out-of-core rendering (CUDA-only) with property opencl.outofcore.film.enable
* Added a safety check for infinite light source when HDR with invalid values (NaN, Inf, etc.) is used
* Added the support to Intel OIDN plugin for enabling/diasbling prefiltering with .prefilter.enable property
* Added the support to Intel OIDN plugin for enabling/disabling prefiltering with .prefilter.enable property
* Disney glossiness evaluation (for PGI, Albedo AOV, etc.) now checks metal and specular parameters
* Disney glossiness evaluation uses now the square root of the value to align with the roughness of Glossy2, Metal, etc.
* Added the support for image map filtering nearest, linear was the only mode available before (issue #545)
Expand Down
2 changes: 1 addition & 1 deletion scripts/azurepipeline/macos/pack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ mkdir release_OSX

###luxcoreui bundle

echo "Bundeling Unified LuxCore Version"
echo "Bundling Unified LuxCore Version"

cp -R macos/mac_bundle/LuxCore.app release_OSX
mkdir -p release_OSX/LuxCore.app/Contents/MacOS
Expand Down
2 changes: 1 addition & 1 deletion scripts/macos/pack_lux_osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ mkdir release_OSX

###luxcoreui bundle

echo "Bundeling OpenCL Version"
echo "Bundling OpenCL Version"

cp -R macos/mac_bundle/LuxCore.app release_OSX
mkdir -p release_OSX/LuxCore.app/Contents/MacOS/
Expand Down
2 changes: 1 addition & 1 deletion scripts/macos/pack_lux_osx_xcode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mkdir release_OSX

###luxcoreui bundle

echo "Bundeling OpenCL Version"
echo "Bundling OpenCL Version"

cp -R macos/mac_bundle/LuxCore.app release_OSX
mkdir -p release_OSX/LuxCore.app/Contents/MacOS/
Expand Down
2 changes: 1 addition & 1 deletion src/slg/film/filmparse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -904,7 +904,7 @@ void Film::Parse(const Properties &props) {
haltNoiseThresholdImagePipelineIndex = props.Get(Property("batch.haltnoisethreshold.index")(0)).Get<u_int>();

if (haltNoiseThresholdImagePipelineIndex >= GetImagePipelineCount()) {
SLG_LOG("WARNING: Halt thereshold image pipeline index not available. Reverting to first image pipeline");
SLG_LOG("WARNING: Halt threshold image pipeline index not available. Reverting to first image pipeline");
haltNoiseThresholdImagePipelineIndex = 0;
}

Expand Down