mirror of
https://github.com/Blinue/Magpie.git
synced 2026-06-24 02:04:10 +00:00
18 lines
194 B
HLSL
18 lines
194 B
HLSL
//!MAGPIE EFFECT
|
|
//!VERSION 1
|
|
|
|
|
|
//!TEXTURE
|
|
Texture2D INPUT;
|
|
|
|
//!SAMPLER
|
|
//!FILTER POINT
|
|
SamplerState sam;
|
|
|
|
|
|
//!PASS 1
|
|
//!BIND INPUT
|
|
|
|
float4 Pass1(float2 pos) {
|
|
return INPUT.Sample(sam, pos);
|
|
}
|