Add basic HS/DS implementation.
authorsteve-lunarg <steve_gh@khasekhemwy.net>
Sat, 7 Jan 2017 15:54:10 +0000 (08:54 -0700)
committersteve-lunarg <steve_gh@khasekhemwy.net>
Fri, 10 Feb 2017 23:59:09 +0000 (16:59 -0700)
commit858c928ac7a2cd92338e8e4883f5ef9d0c54f532
treeb3b0ec30872c9f06eb1720bee9292127c3a0ecc0
parent8e711b84bd5f729e79dc8bc922074559c72f8854
Add basic HS/DS implementation.

This obsoletes WIP PR #704, which was built on the pre entry point wrapping master.  New version
here uses entry point wrapping.

This is a limited implementation of tessellation shaders.  In particular, the following are not functional,
and will be added as separate stages to reduce the size of each PR.

* patchconstantfunctions accepting per-control-point input values, such as
  const OutputPatch <hs_out_t, 3> cpv are not implemented.

* patchconstantfunctions whose signature requires an aggregate input type such as
  a structure containing builtin variables.  Code to synthesize such calls is not
  yet present.

These restrictions will be relaxed as soon as possible.  Simple cases can compile now: see for example
Test/hulsl.hull.1.tesc - e.g, writing to inner and outer tessellation factors.

PCF invocation is synthesized as an entry point epilogue protected behind a barrier and a test on
invocation ID == 0.  If there is an existing invocation ID variable it will be used, otherwise one is
added to the linkage.  The PCF and the shader EP interfaces are unioned and builtins appearing in
the PCF but not the EP are also added to the linkage and synthesized as shader inputs.
Parameter matching to (eventually arbitrary) PCF signatures is by builtin variable type.  Any user
variables in the PCF signature will result in an error.  Overloaded PCF functions will also result in
an error.

[domain()], [partitioning()], [outputtopology()], [outputcontrolpoints()], and [patchconstantfunction()]
attributes to the shader entry point are in place, with the exception of the Pow2 partitioning mode.
18 files changed:
Test/baseResults/hlsl.hull.1.tesc.out [new file with mode: 0644]
Test/baseResults/hlsl.hull.2.tesc.out [new file with mode: 0644]
Test/baseResults/hlsl.hull.void.tesc.out [new file with mode: 0644]
Test/hlsl.hull.1.tesc [new file with mode: 0644]
Test/hlsl.hull.2.tesc [new file with mode: 0644]
Test/hlsl.hull.void.tesc [new file with mode: 0644]
glslang/Include/ConstantUnion.h
glslang/MachineIndependent/Intermediate.cpp
glslang/MachineIndependent/SymbolTable.h
glslang/MachineIndependent/localintermediate.h
gtests/Hlsl.FromFile.cpp
hlsl/hlslAttributes.h
hlsl/hlslGrammar.cpp
hlsl/hlslGrammar.h
hlsl/hlslParseHelper.cpp
hlsl/hlslParseHelper.h
hlsl/hlslScanContext.cpp
hlsl/hlslTokens.h