crash in subdivisionCreator.cpp
Status: Beta
Brought to you by:
render_man
Pixie crashes when I try to render a model I downloaded. It crashes at line 1534 in subdivisionCreator.cpp.
if (vertices[i]->vertex == NULL) vertices[i]->compute();
numVertices is 24, but vertices[1] is NULL. When the vertex parameter is accessed the program crashes.
The file is here (if it runs successfully it may just render black, I stripped a lot of stuff out).
http://www.cs.columbia.edu/~ktegan/download/crash.tgz
If this fix is difficult I would appreciate any work around suggestions. Also if anyone has an answer to my "does Pixie handle multi-segment" motion blur questions that would be good to know as well.
Thanks!
Kevin
I have tracked this down slightly, in CSVertex::sort() the following assert fails (it never gets checked the way I'm compiling):
line 976, subdivisionCreator, CSVertex::sort()
assert(exp == 0);
The CSVertex::sort() function returns an array v where some values have not been initialized.
Kevin
Yes, I isolated this bug but I need some more time to fix it.
Thanks Kevin.
Okan