Files
o3de/Gems/Atom/Feature/Common/Assets/Shaders/Depth/DepthPassTransparentMin.shader
T
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

27 lines
486 B
Plaintext

{
"Source" : "./DepthPass.azsl",
"RasterState": { "CullMode": "None" },
"DepthStencilState" : {
"Depth" : { "Enable" : true, "CompareFunc" : "GreaterEqual" }
},
"CompilerHints" : {
"DisableOptimizations" : false
},
"ProgramSettings" :
{
"EntryPoints":
[
{
"name": "DepthPassVS",
"type" : "Vertex"
}
]
},
"DrawList" : "depthTransparentMin"
}