mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-03 14:06:44 +00:00
22 lines
394 B
V Shell
22 lines
394 B
V Shell
|
vs.1.1
|
||
|
|
||
|
# DYNAMIC: "DOWATERFOG" "0..1"
|
||
|
# DYNAMIC: "SKINNING" "0..1"
|
||
|
|
||
|
#include "macros.vsh"
|
||
|
|
||
|
&AllocateRegister( \$worldPos );
|
||
|
&SkinPosition( $worldPos );
|
||
|
|
||
|
; Transform the position from world to view space
|
||
|
dp4 oPos.x, $worldPos, $cViewProj0
|
||
|
dp4 oPos.y, $worldPos, $cViewProj1
|
||
|
dp4 oPos.z, $worldPos, $cViewProj2
|
||
|
dp4 oPos.w, $worldPos, $cViewProj3
|
||
|
|
||
|
&FreeRegister( \$worldPos );
|
||
|
|
||
|
mov oD0, $cOne
|
||
|
|
||
|
|