graw: add frag-face shader

This commit is contained in:
Keith Whitwell 2010-09-18 09:15:14 +01:00
parent 5b4c43d985
commit 7ef3d171a0

View file

@ -0,0 +1,14 @@
FRAG
DCL IN[0], COLOR, LINEAR
DCL IN[1], FACE, CONSTANT
DCL OUT[0], COLOR
DCL TEMP[0]
IMM FLT32 { 0.5, 1.0, 0.0, 0.0 }
MUL TEMP[0], IN[1].xxxx, IMM[0].xxxx
ADD TEMP[0], TEMP[0], IMM[0].yyyy
MOV OUT[0], TEMP[0]
END