Merge pull request #599 from steve-lunarg/gs

HLSL: Add GS support
This commit is contained in:
John Kessenich 2016-11-23 00:29:30 -07:00 committed by GitHub
commit e122f053bb
13 changed files with 531 additions and 39 deletions

View file

@ -621,6 +621,10 @@ enum TOperator {
EOpMethodGatherCmpGreen, // ...
EOpMethodGatherCmpBlue, // ...
EOpMethodGatherCmpAlpha, // ...
// geometry methods
EOpMethodAppend, // Geometry shader methods
EOpMethodRestartStrip, // ...
};
class TIntermTraverser;