-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathSeeThroughStencil.shader
74 lines (57 loc) · 2.22 KB
/
SeeThroughStencil.shader
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
Shader "Hidden/Renderers/SeeThroughStencil"
{
Properties
{
_Color("Color", Color) = (1,1,1,1)
_ColorMap("ColorMap", 2D) = "white" {}
// Transparency
_AlphaCutoff("Alpha Cutoff", Range(0.0, 1.0)) = 0.5
[HideInInspector]_StencilWriteMask("_StencilWriteMask", Float) = 0
}
HLSLINCLUDE
#pragma target 4.5
#pragma only_renderers d3d11 ps4 xboxone vulkan metal switch
// #pragma enable_d3d11_debug_symbols
//enable GPU instancing support
#pragma multi_compile_instancing
ENDHLSL
SubShader
{
Pass
{
Name "FirstPass"
Tags { "LightMode" = "FirstPass" }
Blend Off
ColorMask 0
Cull Back
Stencil
{
Ref 255
Comp Always
WriteMask [_StencilWriteMask]
Pass replace
}
HLSLPROGRAM
// List all the attributes needed in your shader (will be passed to the vertex shader)
// // you can see the complete list of these attributes in VaryingMesh.hlsl
// #define ATTRIBUTES_NEED_TEXCOORD0
// #define ATTRIBUTES_NEED_NORMAL
// #define ATTRIBUTES_NEED_TANGENT
// // List all the varyings needed in your fragment shader
// #define VARYINGS_NEED_TEXCOORD0
// #define VARYINGS_NEED_TANGENT_TO_WORLD
#include "Packages/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/RenderPass/CustomPass/CustomPassRenderers.hlsl"
void GetSurfaceAndBuiltinData(FragInputs fragInputs, float3 viewDirection, inout PositionInputs posInput, out SurfaceData surfaceData, out BuiltinData builtinData)
{
// Write back the data to the output structures
ZERO_INITIALIZE(BuiltinData, builtinData);
ZERO_INITIALIZE(SurfaceData, surfaceData);
surfaceData.color = 1;
}
#include "Packages/com.unity.render-pipelines.high-definition/Runtime/RenderPipeline/ShaderPass/ShaderPassForwardUnlit.hlsl"
#pragma vertex Vert
#pragma fragment Frag
ENDHLSL
}
}
}