2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 02:27:40 -04:00
Files
CWE-ou-minkata/MOULOpenSourceClientPlugin/Plasma20/Sources/Plasma/PubUtilLib/plSurface/ShaderSrc/ps_CmultAbase.inl

15 lines
178 B
C++

ps.1.1
// Multiply blend color, output base alpha
// Color is t0 * t1
// Alpha is t0.a
tex t0;
tex t1;
mul r0.rgb, t0, t1;
+mov r0.a, t0;
mul r0, r0, v0;