POV-Ray : Newsgroups : povray.bugreports : core dump on FreeBSD : Re: core dump on FreeBSD Server Time
19 Apr 2024 08:57:22 EDT (-0400)
  Re: core dump on FreeBSD  
From: jhu
Date: 15 Feb 2014 11:10:00
Message: <web.52ff905ec516ae80d19b0ec40@news.povray.org>
"jhu" <nomail@nomail> wrote:
> clipka <ano### [at] anonymousorg> wrote:
>
> >
> > This is indeed part of the SSLT code. Make sure you don't use pigments
> > with any zero (or negative) colour components.
>
> Looks like one of my image_maps had rgb values of 0 in some parts. Increased
> those areas to 2 and now it works!

It's happening again:

Assertion failed: ((sd >= 0.0) && (sd <= DBL_MAX)), function
ComputeDiffuseContribution, file backend/render/trace.cpp, line 3535.

So I just edited trace.cpp and added the following in line 3534 :

if (sd < 0.0)
  sd = 0.0;

It works so far.


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.