Files
o3de/Gems/Atom/Feature/Common/Assets/Shaders/Depth/DepthPassTransparentMax.shader
galibzon 4cac875589 [ATOM-15058] Remove Automatic Entry Point Detection (#3150)
.shader files must declare at least  one entry function.

Signed-off-by: garrieta <garrieta@amazon.com>
2021-08-17 08:21:39 -05:00

29 lines
650 B
Plaintext

{
"Source" : "./DepthPass.azsl",
"RasterState": { "CullMode": "None" },
"DepthStencilState" : {
// Note that we assuming reversed depth buffer, which normally means we
// are rendering with GreaterEqual. But in our case we want to render the maximum (furthest) values from the camera.
"Depth" : { "Enable" : true, "CompareFunc" : "LessEqual" }
},
"CompilerHints" : {
},
"ProgramSettings" :
{
"EntryPoints":
[
{
"name": "DepthPassVS",
"type" : "Vertex"
}
]
},
"DrawList" : "depthTransparentMax"
}