画面の中央をぼかすポスト プロセス シェーダーを作成しようとしています。
ここに投稿されたコードのおかげで、アンチエイリアス処理された円がぼやけていますが、画面の左上にあります。問題は、円を計算するための私のアルゴリズムにあるようです:
float4 PS_GaussianBlur(float2 texCoord : TEXCOORD) : COLOR0
{
float4 insideColor = float4(0.0f, 0.0f, 0.0f, 0.0f);
float4 outsideColor = tex2D(colorMap, texCoord);
//Perform the blur:
for (int i = 0; i < KERNEL_SIZE; ++i)
insideColor += tex2D(colorMap, texCoord + offsets[i]) * weights[i];
float dist = (texCoord.x * texCoord.x) + (texCoord.y * texCoord.y);
float distFromCenter = .5 - dist; // positive when inside the circle
float thresholdWidth = 0.1; // a constant you'd tune to get the right level of softness
float antialiasedCircle = saturate((distFromCenter / thresholdWidth) + 0.5);
return lerp(outsideColor, insideColor, antialiasedCircle);
}
前もって感謝します!