Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by EricAlm · Feb 20, 2018 at 09:06 AM · shadersui imagemaskinvisible

Masked image with custom shader turns invisible on iOS

Hi!

I have a shader made by @pedroahpolonio that creates a blurred version of the background in a UI Image. I added a stencil to the shader to be able to mask the blurred image with a UI Mask (To be able to have the blur formed in any shape). Everything looks good within the editor but when I build to iOS the masked blur is not showing at all.

Here is the shader code:

 // Upgrade NOTE: replaced 'mul(UNITY_MATRIX_MVP,*)' with 'UnityObjectToClipPos(*)'
 
 Shader "Unlit/FrostedGlassMaskable"
 {
     Properties
     {
         _Radius("Radius", Range(1, 255)) = 1
 
         // required for UI.Mask to work
          _StencilComp ("Stencil Comparison", Float) = 8
          _Stencil ("Stencil ID", Float) = 0
          _StencilOp ("Stencil Operation", Float) = 0
          _StencilWriteMask ("Stencil Write Mask", Float) = 255
          _StencilReadMask ("Stencil Read Mask", Float) = 255
          _ColorMask ("Color Mask", Float) = 15
          //
     }
 
     Category
     {
         Tags{ "Queue" = "Transparent" "IgnoreProjector" = "True" "RenderType" = "Opaque" }
 
         SubShader
         {
             GrabPass
             {
                 Tags{ "LightMode" = "Always" }
             }
 
             // required for UI.Mask to work
              Stencil
              {
                  Ref [_Stencil]
                  Comp [_StencilComp]
                  Pass [_StencilOp] 
                  ReadMask [_StencilReadMask]
                  WriteMask [_StencilWriteMask]
              }
               ColorMask [_ColorMask]
               //
 
             Pass
             {
                 Tags{ "LightMode" = "Always" }
 
                 CGPROGRAM
                 #pragma target 2.0
                 #pragma vertex vert
                 #pragma fragment frag
                 #pragma fragmentoption ARB_precision_hint_fastest
                 #include "UnityCG.cginc"
 
                 struct appdata_t
                 {
                     float4 vertex : POSITION;
                     float2 texcoord: TEXCOORD0;
                 };
 
                 struct v2f
                 {
                     float4 vertex : POSITION;
                     float4 uvgrab : TEXCOORD0;
                 };
 
                 v2f vert(appdata_t v)
                 {
                     v2f o;
                     o.vertex = UnityObjectToClipPos(v.vertex);
                     #if UNITY_UV_STARTS_AT_TOP
                     float scale = -1.0;
                     #else
                     float scale = 1.0;
                     #endif
                     o.uvgrab.xy = (float2(o.vertex.x, o.vertex.y*scale) + o.vertex.w) * 0.5;
                     o.uvgrab.zw = o.vertex.zw;
                     return o;
                 }
 
                 sampler2D _GrabTexture;
                 float4 _GrabTexture_TexelSize;
                 float _Radius;
 
                 half4 frag(v2f i) : COLOR
                 {
                     half4 sum = half4(0,0,0,0);
 
                     #define GRABXYPIXEL(kernelx, kernely) tex2Dproj( _GrabTexture, UNITY_PROJ_COORD(float4(i.uvgrab.x + _GrabTexture_TexelSize.x * kernelx, i.uvgrab.y + _GrabTexture_TexelSize.y * kernely, i.uvgrab.z, i.uvgrab.w)))
 
                     sum += GRABXYPIXEL(0.0, 0.0);
                     int measurments = 1;
 
                     for (float range = 0.1f; range <= _Radius; range += 0.1f)
                     {
                         sum += GRABXYPIXEL(range, range);
                         sum += GRABXYPIXEL(range, -range);
                         sum += GRABXYPIXEL(-range, range);
                         sum += GRABXYPIXEL(-range, -range);
                         measurments += 4;
                     }
 
                     return sum / measurments;
                 }
                 ENDCG
             }
             GrabPass
             {
                 Tags{ "LightMode" = "Always" }
             }
 
             // required for UI.Mask to work
              Stencil
              {
                  Ref [_Stencil]
                  Comp [_StencilComp]
                  Pass [_StencilOp] 
                  ReadMask [_StencilReadMask]
                  WriteMask [_StencilWriteMask]
              }
               ColorMask [_ColorMask]
               //
 
             Pass
             {
                 Tags{ "LightMode" = "Always" }
 
                 CGPROGRAM
                 #pragma target 2.0
                 #pragma vertex vert
                 #pragma fragment frag
                 #pragma fragmentoption ARB_precision_hint_fastest
                 #include "UnityCG.cginc"
 
                 struct appdata_t
                 {
                     float4 vertex : POSITION;
                     float2 texcoord: TEXCOORD0;
                 };
 
                 struct v2f
                 {
                     float4 vertex : POSITION;
                     float4 uvgrab : TEXCOORD0;
                 };
 
                 v2f vert(appdata_t v)
                 {
                     v2f o;
                     o.vertex = UnityObjectToClipPos(v.vertex);
                     #if UNITY_UV_STARTS_AT_TOP
                     float scale = -1.0;
                     #else
                     float scale = 1.0;
                     #endif
                     o.uvgrab.xy = (float2(o.vertex.x, o.vertex.y*scale) + o.vertex.w) * 0.5;
                     o.uvgrab.zw = o.vertex.zw;
                     return o;
                 }
 
                 sampler2D _GrabTexture;
                 float4 _GrabTexture_TexelSize;
                 float _Radius;
 
                 half4 frag(v2f i) : COLOR
                 {
 
                     half4 sum = half4(0,0,0,0);
                     float radius = 1.41421356237 * _Radius;
 
                     #define GRABXYPIXEL(kernelx, kernely) tex2Dproj( _GrabTexture, UNITY_PROJ_COORD(float4(i.uvgrab.x + _GrabTexture_TexelSize.x * kernelx, i.uvgrab.y + _GrabTexture_TexelSize.y * kernely, i.uvgrab.z, i.uvgrab.w)))
 
                     sum += GRABXYPIXEL(0.0, 0.0);
                     int measurments = 1;
 
                     for (float range = 1.41421356237f; range <= radius * 1.41; range += 1.41421356237f)
                     {
                         sum += GRABXYPIXEL(range, 0);
                         sum += GRABXYPIXEL(-range, 0);
                         sum += GRABXYPIXEL(0, range);
                         sum += GRABXYPIXEL(0, -range);
                         measurments += 4;
                     }
 
                     return sum / measurments;
                 }
                 ENDCG
             }
         }
     }
 }

If I remove the UIMask, the blur is visible on an iOS device, so the blur shader works, It's just the masking part that makes it turn invisible.

Any suggestions on what to do to make this iOS/Android compatible?

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by pedroahpolonio · Feb 20, 2018 at 11:29 AM

Hello, and thank you for reminding me that I was once very poor at making shaders (and I'm still hardly any better, but it is now my belief that one mustn't employ cycles when programming them.) Therefore, I suggest that you figure out what value of "Radius" works for you and "unravel" the for cycle found near line 174 into non-repeating instructions.

Hope it helps!

Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image EricAlm · Feb 20, 2018 at 05:32 PM 0
Share

Hi, thanks. That would help performance wise. But it won't help me get the mask working on iOS :)

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

83 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Renderer on object disabled after level reload 1 Answer

Unity Rendering Some Images, But Not Others (World Space UI) 1 Answer

How can I render a semi-transparent texture with a hole in it? 1 Answer

UIMask does not clip child objects with materials 0 Answers

How to make effect between scenes with UI Mask or Shader 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges