diff options
Diffstat (limited to 'progs/vp/psiz-param-clamp.txt')
-rw-r--r-- | progs/vp/psiz-param-clamp.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/progs/vp/psiz-param-clamp.txt b/progs/vp/psiz-param-clamp.txt new file mode 100644 index 00000000000..7f83fc45165 --- /dev/null +++ b/progs/vp/psiz-param-clamp.txt @@ -0,0 +1,10 @@ +!!ARBvp1.0 +TEMP R0; +TEMP R1; +MOV result.color, vertex.color; +MUL R0.x, vertex.color.x, {10.0}.x; +MAX R0.x, R0.x, {2.0}.x; +MIN result.pointsize.x, R0.x, {4.0}.x; +MOV result.position, vertex.position; +END + |