|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I was just tweaking my multipass compositing macros a bit and wondered if I
could consolidate a couple of statements into one, from this:
#local p = pigment { image_map { png "MultiPass.png" gamma 1 map_type 0 once } }
#local fn = function { pigment { p } }
to this:
#local fn = function {
pigment { image_map { png "MultiPass.png" gamma 1 map_type 0 once }
}
Nope. Memory access violation crash; but I love the (new?) crash dump uploader
Chris, very cool! I uploaded the dump file.
Cheers,
Rob
-------------------------------------------------
www.McGregorFineArt.com
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Am 11.03.2011 13:57, schrieb Robert McGregor:
> #local fn = function {
> pigment { image_map { png "MultiPass.png" gamma 1 map_type 0 once }
> }
Is the missing closing brace a typo in the posting, or otherwise?
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
clipka <ano### [at] anonymousorg> wrote:
> Am 11.03.2011 13:57, schrieb Robert McGregor:
>
> > #local fn = function {
> > pigment { image_map { png "MultiPass.png" gamma 1 map_type 0 once }
> > }
>
> Is the missing closing brace a typo in the posting, or otherwise?
Ah, it is /not/ a typo, I simply missed a brace; so it does work as a single
line, excellent! I thought it should.
On the other hand, it /does/ crash every time without the closing brace, which
is still a bug.
-------------------------------------------------
www.McGregorFineArt.com
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Am 12.03.2011 22:41, schrieb Robert McGregor:
> On the other hand, it /does/ crash every time without the closing brace, which
> is still a bug.
Indeed. Mind to file a bug report on bugs.povray.org?
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
Am 12.03.2011 22:41, schrieb Robert McGregor:
> On the other hand, it /does/ crash every time without the closing brace, which
> is still a bug.
Thanks for filing the bug report at http://bugs.povray.org; the issue
will be fixed with the next 3.7 release candidate, to report a parse
error instead of crashing.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |