diff options
Diffstat (limited to 'materialsystem/stdshaders/Eyes.psh')
| -rw-r--r-- | materialsystem/stdshaders/Eyes.psh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/materialsystem/stdshaders/Eyes.psh b/materialsystem/stdshaders/Eyes.psh new file mode 100644 index 0000000..6909dcf --- /dev/null +++ b/materialsystem/stdshaders/Eyes.psh @@ -0,0 +1,16 @@ +ps.1.1 + +;------------------------------------------------------------------------------ +; Draw the eyes +; t0 - texture +; t1 - iris +; t2 - glint +;------------------------------------------------------------------------------ + +tex t0 +tex t1 +tex t2 + +lrp r0, t1.a, t1, t0 ; Blend in the iris with the background +mad r0.rgb, r0, v0, t2 + ; Modulate by the illumination, add in the glint +mov r0.a, t0.a |