Merge pull request #349 from steve-lunarg/intrinsics

HLSL: Add lerp, fix sincos ret, add ret type tests, non-square mats, tx semantics
This commit is contained in:
John Kessenich 2016-06-28 15:34:11 -06:00 committed by GitHub
commit e5a807276f
9 changed files with 9098 additions and 5755 deletions

View file

@ -523,6 +523,7 @@ enum TOperator {
EOpF32tof16, // HLSL conversion: half of a PackHalf2x16
EOpF16tof32, // HLSL conversion: half of an UnpackHalf2x16
EOpLit, // HLSL lighting coefficient vector
EOpTextureBias, // HLSL texture bias: will be lowered to EOpTexture
};
class TIntermTraverser;