mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-19 19:59:09 +00:00
15 lines
159 B
C++
15 lines
159 B
C++
|
|
ps.1.1
|
|
|
|
// Add blend color, output base alpha
|
|
|
|
// Color is t0 + t1
|
|
// Alpha is t0.a
|
|
|
|
tex t0;
|
|
tex t1;
|
|
|
|
add r0.rgb, t0, t1;
|
|
+mov r0.a, t0;
|
|
mul r0, r0, v0;
|