CaptureScreen.shader 788 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. Shader "NRSDK/CaptureScreen"
  2. {
  3. Properties
  4. {
  5. _MainTex("Texture", 2D) = "white" {}
  6. }
  7. SubShader
  8. {
  9. Tags { "RenderType" = "Opaque" }
  10. LOD 100
  11. Pass
  12. {
  13. CGPROGRAM
  14. #pragma vertex vert
  15. #pragma fragment frag
  16. #include "UnityCG.cginc"
  17. struct appdata
  18. {
  19. float4 vertex : POSITION;
  20. float2 uv : TEXCOORD0;
  21. };
  22. struct v2f
  23. {
  24. float2 uv : TEXCOORD0;
  25. UNITY_FOG_COORDS(1)
  26. float4 vertex : SV_POSITION;
  27. };
  28. sampler2D _MainTex;
  29. float4 _MainTex_ST;
  30. v2f vert(appdata v)
  31. {
  32. v2f o;
  33. o.vertex = UnityObjectToClipPos(v.vertex);
  34. o.uv = TRANSFORM_TEX(v.uv, _MainTex);
  35. return o;
  36. }
  37. fixed4 frag(v2f i) : SV_Target
  38. {
  39. // sample the texture
  40. fixed4 col = tex2D(_MainTex, i.uv);
  41. return col;
  42. }
  43. ENDCG
  44. }
  45. }
  46. }