Garry's Mod
GShader Library
126件中 71-80 を表示
< 1 ... 6  7  8  9  10 ... 13 >
更新:9月9日 @ 11時20分
更新者:Evgeny Akabenko

CSM Fixes

更新:9月5日 @ 6時58分
更新者:Evgeny Akabenko

更新:9月5日 @ 6時51分
更新者:Evgeny Akabenko

更新:9月5日 @ 6時44分
更新者:Evgeny Akabenko

Fixed fog rt, removed RGBA16F for _rt_WPDepth

更新:9月3日 @ 13時47分
更新者:Evgeny Akabenko

更新:9月3日 @ 13時44分
更新者:Evgeny Akabenko

Maked adaptation for antiscreamer addon

更新:9月3日 @ 2時51分
更新者:Evgeny Akabenko

更新:9月1日 @ 4時52分
更新者:Evgeny Akabenko

Fixed some glithes for Velocity buffer.

更新:9月1日 @ 4時29分
更新者:Evgeny Akabenko

Minor changes

更新:9月1日 @ 4時23分
更新者:Evgeny Akabenko

Fixed depth buffer in .a channel of _rt_WPDepth using formula:

float depth = 1 / ( tex2D(DepthBuffer,uv).a * 4000);

https://github.com/ValveSoftware/source-sdk-2013/blob/68c8b82fdcb41b8ad5abde9fe1f0654254217b8e/src/materialsystem/stdshaders/depthwrite_ps2x.fxc#L35C1-L39C6
g_flFarPlane == 4000

Same fix was in EGSM:
https://github.com/devonium/EGSM/blob/master/include_files/depthpass.lua#L163
return float4((1/tex2D(WDBuffer, i.vTexCoord).w)/4000,0,0,1);

1/depth/4000 == 1/(depth*4000) is equal