0

画面の中央をぼかすポスト プロセス シェーダーを作成しようとしています。

ここに投稿されたコードのおかげで、アンチエイリアス処理された円がぼやけていますが、画面の左上にあります。問題は、円を計算するための私のアルゴリズムにあるようです:

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);
}

前もって感謝します!

4

1 に答える 1

1

これを試して:

float dx = 0.5 - texCoord.x, dy = 0.5 - texCoord.y;
float dist = dx * dx + dy * dy;
float distFromCenter = 0.25 - dist;  // positive when inside the circle
于 2013-01-05T02:38:41.010 に答える