You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
322 B
13 lines
322 B
/*#pragma settings Version110 Sharpen*/
|
|
|
|
uniform sampler1D one;
|
|
uniform sampler2D two;
|
|
|
|
void main() {
|
|
float4 a = sample(one, 0);
|
|
float4 b = sample(two, float2(0));
|
|
float4 c = sample(one, float2(0));
|
|
float4 d = sample(two, float3(0));
|
|
sk_FragColor = half4(half(a.x), half(b.x), half(c.x), half(d.x));
|
|
}
|