1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "Source" : "HairShortCutResolveDepth.azsl",
- "DepthStencilState" :
- {
- "Depth" :
- {
- "Enable" : true, // test the written depth and accept/discard based on the depth buffer
- "CompareFunc" : "GreaterEqual"
- // Originally in TressFX this is LessEqual - Atom is using reverse sort
- },
- "Stencil" :
- {
- "Enable" : false
- }
- },
- "GlobalTargetBlendState" :
- {
- "Enable" : false
- },
- "ProgramSettings":
- {
- "EntryPoints":
- [
- {
- "name": "FullScreenVS",
- "type": "Vertex"
- },
- {
- "name": "HairShortCutResolveDepthPS",
- "type": "Fragment"
- }
- ]
- }
- }
|