8 lines
111 B
Plaintext
8 lines
111 B
Plaintext
|
/*#pragma settings Default*/
|
||
|
|
||
|
uniform half4 src, dst;
|
||
|
|
||
|
half4 main() {
|
||
|
return blend_hard_light(src, dst);
|
||
|
}
|