Share

Pixie

Subscribe

photonmap bug?

You are viewing a single message from this topic. View all messages.

  1. 2009-10-22 15:25:08 UTC

    thanks Okan ,this bug is fixed.
    but I found another bug in texmake.cpp. from line 424: for (i=0;i<newHeight*newHeight;i++) { normalizer[i] = 0; filteredData[i] = 0; }

    for (;i&lt;newHeight*newHeight*numSamples;i++) {
        filteredData[i] =   0;
    }
    

    should be: for (i=0;i<newHeight*newWidth;i++) { normalizer[i] = 0; filteredData[i] = 0; }

    for (;i&lt;newHeight*newWidth*numSamples;i++) {
        filteredData[i] =   0;
    }
    this bug can make some texture incorrect
    
< Previous | 1 | Next >

Add a Reply

This forum does not allow anonymous participation.

Log in to add a reply. Not registered? Create an account to participate and receive email updates when replies are posted to this topic.