SharpenEdgesFP.cg
资源名称:3dwind2.0.rar [点击查看]
上传用户:xhbjoy
上传日期:2014-10-07
资源大小:38068k
文件大小:0k
源码类别:
游戏引擎
开发平台:
Visual C++
- sampler RT: register(s0);
- float4 sharpenEdges_fp(float2 iTexCoord: TEXCOORD0) : COLOR {
- float2 vTexelSize = 0.005;
- float2 usedTexelED[8] = {
- -1, -1,
- 0, -1,
- 1, -1,
- -1, 0,
- 1, 0,
- -1, 1,
- 0, 1,
- 1, 1,
- };
- float4 cAvgColor= 9 * tex2D (RT, iTexCoord);
- for(int t=0; t<8; t++)
- cAvgColor -= tex2D(RT, iTexCoord + vTexelSize * usedTexelED[t]);
- return cAvgColor;
- }