fa163f49b9
* move shader asset builder test into test_Atom_MainSuite_Optimized.py, update CMakeLists.txt, and move all imports inside the test class for hydra_ShaderAssetBuilder_RecompilesShaderAsChainOfDependenciesChanges.py Signed-off-by: jromnoa <jromnoa@amazon.com> * re-organize the Atom automated test structure to match the new parallel + batched test structures Signed-off-by: jromnoa <jromnoa@amazon.com> * fix CMakeLists.txt registrations for test files Signed-off-by: jromnoa <jromnoa@amazon.com>
27 lines
485 B
Plaintext
27 lines
485 B
Plaintext
// This is a dummy shader used to validate detection of "#included files"
|
|
{
|
|
"Source" : "DependencyValidation.azsl",
|
|
|
|
"DepthStencilState" : {
|
|
"Depth" : { "Enable" : false, "CompareFunc" : "GreaterEqual" }
|
|
},
|
|
|
|
"DrawList" : "forward",
|
|
|
|
"ProgramSettings":
|
|
{
|
|
"EntryPoints":
|
|
[
|
|
{
|
|
"name": "MainVS",
|
|
"type": "Vertex"
|
|
},
|
|
{
|
|
"name": "MainPS",
|
|
"type": "Fragment"
|
|
}
|
|
]
|
|
}
|
|
|
|
}
|