From a791d7011d5c46eb92ea0b5623a4ed7f824d6e8b Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sat, 19 Oct 2024 22:35:40 +0200 Subject: [PATCH] Update shader to support instancing --- .../Runtime/Prefab/Materials/UnlitWebView.shader | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/com.microsoft.mixedreality.webview.unity/Runtime/Prefab/Materials/UnlitWebView.shader b/com.microsoft.mixedreality.webview.unity/Runtime/Prefab/Materials/UnlitWebView.shader index 76798ff..e9582ad 100644 --- a/com.microsoft.mixedreality.webview.unity/Runtime/Prefab/Materials/UnlitWebView.shader +++ b/com.microsoft.mixedreality.webview.unity/Runtime/Prefab/Materials/UnlitWebView.shader @@ -24,6 +24,7 @@ Shader "WebView/Unlit" { float4 vertex : POSITION; float2 uv : TEXCOORD0; + UNITY_VERTEX_INPUT_INSTANCE_ID }; struct v2f @@ -31,6 +32,8 @@ Shader "WebView/Unlit" float2 uv : TEXCOORD0; UNITY_FOG_COORDS(1) float4 vertex : SV_POSITION; + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO }; float _Brightness; @@ -40,6 +43,9 @@ Shader "WebView/Unlit" v2f vert (appdata v) { v2f o; + UNITY_SETUP_INSTANCE_ID(v); + UNITY_TRANSFER_INSTANCE_ID(v, o); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(o); o.vertex = UnityObjectToClipPos(v.vertex); o.uv = TRANSFORM_TEX(v.uv, _MainTex); UNITY_TRANSFER_FOG(o,o.vertex); @@ -48,6 +54,7 @@ Shader "WebView/Unlit" fixed4 frag (v2f i) : SV_Target { + UNITY_SETUP_INSTANCE_ID(i); // sample the texture fixed4 col = tex2D(_MainTex, i.uv); col.rgb = GammaToLinearSpace(col.rgb) * _Brightness; @@ -58,4 +65,4 @@ Shader "WebView/Unlit" ENDCG } } -} +} \ No newline at end of file