Changeset 3355 for GTP


Ignore:
Timestamp:
04/15/09 09:13:01 (15 years ago)
Author:
mattausch
Message:
 
Location:
GTP/trunk/App/Demos/Vis/FriendlyCulling/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/SampleGenerator.cpp

    r3354 r3355  
    6565                { 
    6666                        // q: should we use halton or does it conflict with the poisson disc properties? 
    67                         r[0] = RandomValue(0, 1); r[1] = RandomValue(0, 1); 
    68                         //mHalton->GetNext(r); 
     67                        //r[0] = RandomValue(0, 1); r[1] = RandomValue(0, 1); 
     68                        mHalton->GetNext(r); 
    6969 
    7070#if 0 
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/shaderenv.h

    r3354 r3355  
    1111//#define NUM_SAMPLES 16 
    1212//#define NUM_SAMPLES 24 
    13 #define NUM_SAMPLES 8 
     13#define NUM_SAMPLES 32 
     14//#define NUM_SAMPLES 8 
    1415 
    1516//#define MIN_SAMPLES 48 
  • GTP/trunk/App/Demos/Vis/FriendlyCulling/src/shaders/ssao.cg

    r3354 r3355  
    569569        // the weight equals the number of sampled shot in this pass 
    570570        const float newWeight = ao.z; 
    571  
    572571        // completely reset the ao in this pixel 
    573572        const float completelyResetThres = 20.0f; 
Note: See TracChangeset for help on using the changeset viewer.