码迷,mamicode.com
首页 > 其他好文 > 详细

改进版置灰(转载)

时间:2014-09-05 19:49:41      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:android   blog   http   color   os   io   使用   ar   for   

之前有人做过,不过效率不高: http://blog.csdn.net/onerain88/article/details/12197277  
他的代码:

fixed4 frag (v2f i) : COLOR
{
    fixed4 col;
    if (i.color.r < 0.001) 
     {
         col = tex2D(_MainTex, i.texcoord);
         float grey = dot(col.rgb, float3(0.299, 0.587, 0.114));
         col.rgb = float3(grey, grey, grey);
     }
     else
     {
         col = tex2D(_MainTex, i.texcoord) * i.color;
     }
     return col;
}

通过修改后效率明显大幅提升:

struct v2f 

    float4 vertex : SV_POSITION; 
    half2 texcoord : TEXCOORD0; 
    fixed4 color : COLOR; 
    fixed gray : TEXCOORD1; 
}; 
sampler2D _MainTex; 
float4 _MainTex_ST; 
v2f vert (appdata_t v) 

    v2f o; 
    o.vertex = mul(UNITY_MATRIX_MVP, v.vertex); 
    o.texcoord = TRANSFORM_TEX(v.texcoord, _MainTex); 
    o.color = v.color; 
    o.gray = dot(v.color, fixed4(1,1,1,0)); 
    return o; 

fixed4 frag (v2f i) : COLOR 

    fixed4 col; 
    if (i.gray == 0) 
    { 
        col = tex2D(_MainTex, i.texcoord); 
        col.rgb = dot(col.rgb, fixed3(.222,.707,.071)); 
    } 
    else 
    { 
        col = tex2D(_MainTex, i.texcoord) * i.color; 
    } 
    return col; 
}
设置UISprite.color = Color.black;就能使用了。

原理是在v2f中申请一个寄存器TEXCOORD1放置数据gray,并在顶点程序vert中计算是否灰色,在片段程序frag中用i.gray == 0做if判断。

第一段代码效率低的原因是if (i.color.r < 0.001)这里访问了color的分量r,但在官方文档中明确说了这样做效率低,除非必要情况时才使用。

另外在PC中(fixed gray : TEXCOORD1;)可以改成(bool gray : TEXCOORD1;),但在移动设备(android和ios)中都会有问题,求解。

改进版置灰(转载)

标签:android   blog   http   color   os   io   使用   ar   for   

原文地址:http://www.cnblogs.com/ssw-men/p/3958547.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!