The Persistence of Vision Raytracer (POV-Ray).
This is the legacy Bug Tracking System for the POV-Ray project. Bugs listed here are being migrated to our github issue tracker. Please refer to that for new reports or updates to existing ones on this system.
Attached to Project: POV-Ray
Opened by Tim Attwood - 2009-05-27
Last edited by Christoph Lipka - 2010-03-26
Opened by Tim Attwood - 2009-05-27
Last edited by Christoph Lipka - 2010-03-26
FS#32 - tiff file extention error
The parser is failing to read the .tiff file extension from the input string...
bump_map { tiff "earth03_hf2.tiff" }
Results in file not found, but
bump_map { tiff "earth03_hf2" }
will find the file. It might be that it’s not a three character extension?
Closed by Christoph Lipka
Friday, 26 March 2010, 16:45 GMT
Reason for closing: Fixed
Additional comments about closing:
Friday, 26 March 2010, 16:45 GMT
Reason for closing: Fixed
Additional comments about closing:
No feedback from beta testers for
months, so probably "no news is
good news"
According to the code of SceneData::FindFile() in scene.cpp, in order for POV-Ray to search for the exact filename it must indeed end with an extension of no more than 3 characters (files ending in a dot are accepted though). I.e., currently, the rules for producing filenames are as follows:
I suggest to apply the following modifications to this:
Submitted a preliminary fix with change #4813, making sure the exact-named file is always searched for as a last resort (unless it has already been searched for first). The rules when to search for this name first, however, should be reviewed nonetheless.
implemented the suggested solution with changelist #4900