Ignore:
Timestamp:
11/06/08 10:41:02 (16 years ago)
Author:
mattausch
Message:

still some error with ssao on edges
bilateral filter slow

File:
1 edited

Legend:

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

    r3102 r3103  
    776776        m.x[2][3] = .0f; 
    777777         
    778         m.x[3][0] = (right + left) * xDif; 
    779         m.x[3][1] = (top + bottom) * yDif; 
    780         m.x[3][2] = (far + near)   * zDif; 
     778        m.x[3][0] = -(right + left) * xDif; 
     779        m.x[3][1] = -(top + bottom) * yDif; 
     780        m.x[3][2] = -(far + near)   * zDif; 
    781781        m.x[3][3] = 1.0f; 
    782782 
Note: See TracChangeset for help on using the changeset viewer.