Changeset 2838 for GTP/trunk/App/Demos/Vis/FriendlyCulling/src/shaders
- Timestamp:
- 07/15/08 16:18:50 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/App/Demos/Vis/FriendlyCulling/src/shaders/deferred.cg
r2837 r2838 253 253 if ((tex.x >= 0.0f) && (tex.x < 1.0f) && 254 254 (tex.y >= 0.0f) && (tex.y < 1.0f) && 255 (abs(depthDif) < 9e-4f))255 (abs(depthDif) < 8e-5f)) 256 256 OUT.color = attenuated_color * expFactor + col1 * float4(1.0f - expFactor); 257 257 else
Note: See TracChangeset
for help on using the changeset viewer.