Skip to content

Commit d6264f7

Browse files
committed
Fixed missing experimental feature warnings for Oren-Nayar and Lommel-Seeliger diffuse models.
1 parent 2e48066 commit d6264f7

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

source/base/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
#define OFFICIAL_VERSION_STRING "3.7.1"
4646
#define OFFICIAL_VERSION_NUMBER 371
4747

48-
#define POV_RAY_PRERELEASE "alpha.8557270"
48+
#define POV_RAY_PRERELEASE "alpha.8578982"
4949

5050
#if (POV_RAY_IS_AUTOBUILD == 1) && ((POV_RAY_IS_OFFICIAL == 1) || (POV_RAY_IS_SEMI_OFFICIAL == 1))
5151
#ifdef POV_RAY_PRERELEASE

source/parser/parser.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,8 +288,12 @@ void Parser::Run()
288288
strcat(str, str [0] ? ", backside illumination" : "backside illumination");
289289
if(mExperimentalFlags.functionHf)
290290
strcat(str, str [0] ? ", function '.hf'" : "function '.hf'");
291+
if(mExperimentalFlags.lommelSeeliger)
292+
strcat(str, str [0] ? ", Lommel-Seeliger diffuse model" : "Lommel-Seeliger diffuse model");
291293
if(mExperimentalFlags.meshCamera)
292294
strcat(str, str [0] ? ", mesh camera" : "mesh camera");
295+
if(mExperimentalFlags.orenNayar)
296+
strcat(str, str [0] ? ", Oren-Nayar diffuse model" : "Oren-Nayar diffuse model");
293297
if(mExperimentalFlags.slopeAltitude)
294298
strcat(str, str [0] ? ", slope pattern altitude" : "slope pattern altitude");
295299
if(mExperimentalFlags.spline)

unix/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.7.1-alpha.8557270
1+
3.7.1-alpha.8578982

0 commit comments

Comments
 (0)