diff --git a/SPIRV/GlslangToSpv.cpp b/SPIRV/GlslangToSpv.cpp index ce5e3696..64bce356 100755 --- a/SPIRV/GlslangToSpv.cpp +++ b/SPIRV/GlslangToSpv.cpp @@ -107,7 +107,8 @@ private: // class TGlslangToSpvTraverser : public glslang::TIntermTraverser { public: - TGlslangToSpvTraverser(const glslang::TIntermediate*, spv::SpvBuildLogger* logger, glslang::SpvOptions& options); + TGlslangToSpvTraverser(unsigned int spvVersion, const glslang::TIntermediate*, spv::SpvBuildLogger* logger, + glslang::SpvOptions& options); virtual ~TGlslangToSpvTraverser() { } bool visitAggregate(glslang::TVisit, glslang::TIntermAggregate*); @@ -880,13 +881,13 @@ bool HasNonLayoutQualifiers(const glslang::TType& type, const glslang::TQualifie // Implement the TGlslangToSpvTraverser class. // -TGlslangToSpvTraverser::TGlslangToSpvTraverser(const glslang::TIntermediate* glslangIntermediate, +TGlslangToSpvTraverser::TGlslangToSpvTraverser(unsigned int spvVersion, const glslang::TIntermediate* glslangIntermediate, spv::SpvBuildLogger* buildLogger, glslang::SpvOptions& options) : TIntermTraverser(true, false, true), options(options), shaderEntry(nullptr), currentFunction(nullptr), sequenceDepth(0), logger(buildLogger), - builder((glslang::GetKhronosToolId() << 16) | glslang::GetSpirvGeneratorVersion(), logger), + builder(spvVersion, (glslang::GetKhronosToolId() << 16) | glslang::GetSpirvGeneratorVersion(), logger), inEntryPoint(false), entryPointTerminated(false), linkageOnly(false), glslangIntermediate(glslangIntermediate) { @@ -6067,7 +6068,7 @@ void GlslangToSpv(const glslang::TIntermediate& intermediate, std::vectortraverse(&it); it.finishSpv(); it.dumpSpv(spirv); diff --git a/SPIRV/SpvBuilder.cpp b/SPIRV/SpvBuilder.cpp index a6df392d..408634e4 100644 --- a/SPIRV/SpvBuilder.cpp +++ b/SPIRV/SpvBuilder.cpp @@ -56,7 +56,8 @@ namespace spv { -Builder::Builder(unsigned int magicNumber, SpvBuildLogger* buildLogger) : +Builder::Builder(unsigned int spvVersion, unsigned int magicNumber, SpvBuildLogger* buildLogger) : + spvVersion(spvVersion), source(SourceLanguageUnknown), sourceVersion(0), sourceFileStringId(NoResult), @@ -2403,7 +2404,7 @@ void Builder::dump(std::vector& out) const { // Header, before first instructions: out.push_back(MagicNumber); - out.push_back(Version); + out.push_back(spvVersion); out.push_back(builderNumber); out.push_back(uniqueId + 1); out.push_back(0); diff --git a/SPIRV/SpvBuilder.h b/SPIRV/SpvBuilder.h index 59b1da2e..1d8fd8be 100755 --- a/SPIRV/SpvBuilder.h +++ b/SPIRV/SpvBuilder.h @@ -60,7 +60,7 @@ namespace spv { class Builder { public: - Builder(unsigned int userNumber, SpvBuildLogger* logger); + Builder(unsigned int spvVersion, unsigned int userNumber, SpvBuildLogger* logger); virtual ~Builder(); static const int maxMatrixSize = 4; @@ -585,6 +585,7 @@ public: void dumpInstructions(std::vector&, const std::vector >&) const; void dumpModuleProcesses(std::vector&) const; + unsigned int spvVersion; // the version of SPIR-V to emit in the header SourceLanguage source; int sourceVersion; spv::Id sourceFileStringId; diff --git a/StandAlone/StandAlone.cpp b/StandAlone/StandAlone.cpp index 964c44e3..69cea888 100644 --- a/StandAlone/StandAlone.cpp +++ b/StandAlone/StandAlone.cpp @@ -159,7 +159,7 @@ std::vector IncludeDirectoryList; int ClientInputSemanticsVersion = 100; // maps to, say, #define VULKAN 100 int VulkanClientVersion = 100; // would map to, say, Vulkan 1.0 int OpenGLClientVersion = 450; // doesn't influence anything yet, but maps to OpenGL 4.50 -unsigned int TargetVersion = 0x00001000; // maps to, say, SPIR-V 1.0 +unsigned int TargetVersion = 0x00010000; // maps to, say, SPIR-V 1.0 std::vector Processes; // what should be recorded by OpModuleProcessed, or equivalent // Per descriptor-set binding base data diff --git a/Test/baseLegalResults/hlsl.aliasOpaque.frag.out b/Test/baseLegalResults/hlsl.aliasOpaque.frag.out index 71367e47..3bf38eaf 100644 --- a/Test/baseLegalResults/hlsl.aliasOpaque.frag.out +++ b/Test/baseLegalResults/hlsl.aliasOpaque.frag.out @@ -1,6 +1,6 @@ hlsl.aliasOpaque.frag WARNING: AST will form illegal SPIR-V; need to transform to legalize -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 87 diff --git a/Test/baseLegalResults/hlsl.flattenOpaque.frag.out b/Test/baseLegalResults/hlsl.flattenOpaque.frag.out index 1ebee7c3..4b687450 100644 --- a/Test/baseLegalResults/hlsl.flattenOpaque.frag.out +++ b/Test/baseLegalResults/hlsl.flattenOpaque.frag.out @@ -1,6 +1,6 @@ hlsl.flattenOpaque.frag WARNING: AST will form illegal SPIR-V; need to transform to legalize -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 185 diff --git a/Test/baseLegalResults/hlsl.flattenOpaqueInit.vert.out b/Test/baseLegalResults/hlsl.flattenOpaqueInit.vert.out index 1881f45d..1ca88ad5 100644 --- a/Test/baseLegalResults/hlsl.flattenOpaqueInit.vert.out +++ b/Test/baseLegalResults/hlsl.flattenOpaqueInit.vert.out @@ -1,6 +1,6 @@ hlsl.flattenOpaqueInit.vert WARNING: AST will form illegal SPIR-V; need to transform to legalize -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 134 diff --git a/Test/baseLegalResults/hlsl.flattenOpaqueInitMix.vert.out b/Test/baseLegalResults/hlsl.flattenOpaqueInitMix.vert.out index 9bbbbf5d..ee8126c6 100644 --- a/Test/baseLegalResults/hlsl.flattenOpaqueInitMix.vert.out +++ b/Test/baseLegalResults/hlsl.flattenOpaqueInitMix.vert.out @@ -1,6 +1,6 @@ hlsl.flattenOpaqueInitMix.vert WARNING: AST will form illegal SPIR-V; need to transform to legalize -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 80 diff --git a/Test/baseLegalResults/hlsl.flattenSubset.frag.out b/Test/baseLegalResults/hlsl.flattenSubset.frag.out index 2c1790bc..c18a9e9e 100755 --- a/Test/baseLegalResults/hlsl.flattenSubset.frag.out +++ b/Test/baseLegalResults/hlsl.flattenSubset.frag.out @@ -1,6 +1,6 @@ hlsl.flattenSubset.frag WARNING: AST will form illegal SPIR-V; need to transform to legalize -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 66 diff --git a/Test/baseLegalResults/hlsl.flattenSubset2.frag.out b/Test/baseLegalResults/hlsl.flattenSubset2.frag.out index aed1b61f..e4f43429 100755 --- a/Test/baseLegalResults/hlsl.flattenSubset2.frag.out +++ b/Test/baseLegalResults/hlsl.flattenSubset2.frag.out @@ -1,6 +1,6 @@ hlsl.flattenSubset2.frag WARNING: AST will form illegal SPIR-V; need to transform to legalize -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 53 diff --git a/Test/baseLegalResults/hlsl.partialFlattenLocal.vert.out b/Test/baseLegalResults/hlsl.partialFlattenLocal.vert.out index e0ae5c6d..06d125d1 100755 --- a/Test/baseLegalResults/hlsl.partialFlattenLocal.vert.out +++ b/Test/baseLegalResults/hlsl.partialFlattenLocal.vert.out @@ -1,6 +1,6 @@ hlsl.partialFlattenLocal.vert WARNING: AST will form illegal SPIR-V; need to transform to legalize -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 165 diff --git a/Test/baseLegalResults/hlsl.partialFlattenMixed.vert.out b/Test/baseLegalResults/hlsl.partialFlattenMixed.vert.out index a0502c6e..ce9ec885 100755 --- a/Test/baseLegalResults/hlsl.partialFlattenMixed.vert.out +++ b/Test/baseLegalResults/hlsl.partialFlattenMixed.vert.out @@ -1,6 +1,6 @@ hlsl.partialFlattenMixed.vert WARNING: AST will form illegal SPIR-V; need to transform to legalize -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 36 diff --git a/Test/baseResults/glsl.entryPointRename.vert.bad.out b/Test/baseResults/glsl.entryPointRename.vert.bad.out index 942d312a..2afceb87 100644 --- a/Test/baseResults/glsl.entryPointRename.vert.bad.out +++ b/Test/baseResults/glsl.entryPointRename.vert.bad.out @@ -1,7 +1,7 @@ glsl.entryPointRename.vert ERROR: Source entry point must be "main" -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 20 diff --git a/Test/baseResults/glsl.entryPointRename.vert.out b/Test/baseResults/glsl.entryPointRename.vert.out index 92c09b97..0b17164b 100644 --- a/Test/baseResults/glsl.entryPointRename.vert.out +++ b/Test/baseResults/glsl.entryPointRename.vert.out @@ -1,5 +1,5 @@ glsl.entryPointRename.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 20 diff --git a/Test/baseResults/glspv.version.frag.out b/Test/baseResults/glspv.version.frag.out index f8b20e68..ba0d2b0d 100755 --- a/Test/baseResults/glspv.version.frag.out +++ b/Test/baseResults/glspv.version.frag.out @@ -1,7 +1,7 @@ glspv.version.frag ERROR: #version: compilation for SPIR-V does not support the compatibility profile -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 6 diff --git a/Test/baseResults/hlsl.PointSize.geom.out b/Test/baseResults/hlsl.PointSize.geom.out index 44498165..532d17c8 100755 --- a/Test/baseResults/hlsl.PointSize.geom.out +++ b/Test/baseResults/hlsl.PointSize.geom.out @@ -69,7 +69,7 @@ output primitive = line_strip 0:? 'ps' ( in 3-element array of uint PointSize) 0:? 'OutputStream.ps' ( out float PointSize) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 36 diff --git a/Test/baseResults/hlsl.PointSize.vert.out b/Test/baseResults/hlsl.PointSize.vert.out index ee9e9bf3..1a01bcbc 100755 --- a/Test/baseResults/hlsl.PointSize.vert.out +++ b/Test/baseResults/hlsl.PointSize.vert.out @@ -37,7 +37,7 @@ Shader version: 500 0:? Linker Objects 0:? '@entryPointOutput' ( out float PointSize) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 16 diff --git a/Test/baseResults/hlsl.aliasOpaque.frag.out b/Test/baseResults/hlsl.aliasOpaque.frag.out index cfaf466d..cc0dd65d 100755 --- a/Test/baseResults/hlsl.aliasOpaque.frag.out +++ b/Test/baseResults/hlsl.aliasOpaque.frag.out @@ -142,7 +142,7 @@ gl_FragCoord origin is upper left 0:? 'gtex' ( uniform texture2D) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 64 diff --git a/Test/baseResults/hlsl.amend.frag.out b/Test/baseResults/hlsl.amend.frag.out index 745e712e..95d51ba3 100755 --- a/Test/baseResults/hlsl.amend.frag.out +++ b/Test/baseResults/hlsl.amend.frag.out @@ -159,7 +159,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform 4-component vector of float a, uniform float b, uniform 3-component vector of float c, uniform int d, uniform int e}) 0:? 'm' ( global 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 57 diff --git a/Test/baseResults/hlsl.array.flatten.frag.out b/Test/baseResults/hlsl.array.flatten.frag.out index 8e0e5e0d..36e79804 100644 --- a/Test/baseResults/hlsl.array.flatten.frag.out +++ b/Test/baseResults/hlsl.array.flatten.frag.out @@ -344,7 +344,7 @@ gl_FragCoord origin is upper left 0:? 'not_flattened_a' ( global 5-element array of int) 0:? 'ps_output.color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 143 diff --git a/Test/baseResults/hlsl.array.frag.out b/Test/baseResults/hlsl.array.frag.out index 2908d467..ccf8c69e 100755 --- a/Test/baseResults/hlsl.array.frag.out +++ b/Test/baseResults/hlsl.array.frag.out @@ -289,7 +289,7 @@ gl_FragCoord origin is upper left 0:? 'i' (layout( location=0) flat in int) 0:? 'input' (layout( location=1) in 3-element array of 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 126 diff --git a/Test/baseResults/hlsl.array.implicit-size.frag.out b/Test/baseResults/hlsl.array.implicit-size.frag.out index 286b3e4c..a81edc72 100644 --- a/Test/baseResults/hlsl.array.implicit-size.frag.out +++ b/Test/baseResults/hlsl.array.implicit-size.frag.out @@ -162,7 +162,7 @@ gl_FragCoord origin is upper left 0:? 'g_array_unused' ( global 7-element array of float) 0:? 'g_mystruct' ( global 2-element array of structure{ temp int i, temp float f}) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 72 diff --git a/Test/baseResults/hlsl.array.multidim.frag.out b/Test/baseResults/hlsl.array.multidim.frag.out index 5694264a..a82fe2d2 100644 --- a/Test/baseResults/hlsl.array.multidim.frag.out +++ b/Test/baseResults/hlsl.array.multidim.frag.out @@ -133,7 +133,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform 5-element array of 4-element array of 3-element array of float float_array}) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 57 diff --git a/Test/baseResults/hlsl.assoc.frag.out b/Test/baseResults/hlsl.assoc.frag.out index 18a0a31b..b5b38f5c 100755 --- a/Test/baseResults/hlsl.assoc.frag.out +++ b/Test/baseResults/hlsl.assoc.frag.out @@ -131,7 +131,7 @@ gl_FragCoord origin is upper left 0:? 'a4' (layout( location=3) in 4-component vector of float) 0:? 'a5' (layout( location=4) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 58 diff --git a/Test/baseResults/hlsl.attribute.expression.comp.out b/Test/baseResults/hlsl.attribute.expression.comp.out index df4fdd55..53a8dcb1 100644 --- a/Test/baseResults/hlsl.attribute.expression.comp.out +++ b/Test/baseResults/hlsl.attribute.expression.comp.out @@ -81,7 +81,7 @@ local_size = (4, 6, 8) 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform int bound}) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 39 diff --git a/Test/baseResults/hlsl.attribute.frag.out b/Test/baseResults/hlsl.attribute.frag.out index efe3e711..ce5203b3 100755 --- a/Test/baseResults/hlsl.attribute.frag.out +++ b/Test/baseResults/hlsl.attribute.frag.out @@ -49,7 +49,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? 'input' (layout( location=0) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 24 diff --git a/Test/baseResults/hlsl.attributeC11.frag.out b/Test/baseResults/hlsl.attributeC11.frag.out index d1d7297c..b507abac 100755 --- a/Test/baseResults/hlsl.attributeC11.frag.out +++ b/Test/baseResults/hlsl.attributeC11.frag.out @@ -93,7 +93,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=7) out 4-component vector of float) 0:? 'input' (layout( location=8) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 51 diff --git a/Test/baseResults/hlsl.attributeGlobalBuffer.frag.out b/Test/baseResults/hlsl.attributeGlobalBuffer.frag.out index c72b7e1c..15aa7772 100755 --- a/Test/baseResults/hlsl.attributeGlobalBuffer.frag.out +++ b/Test/baseResults/hlsl.attributeGlobalBuffer.frag.out @@ -55,7 +55,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( set=2 binding=5 row_major std140) uniform block{ uniform 4-component vector of float u1, uniform 4-component vector of float u2}) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 28 diff --git a/Test/baseResults/hlsl.basic.comp.out b/Test/baseResults/hlsl.basic.comp.out index 8abc3b4c..610c2381 100755 --- a/Test/baseResults/hlsl.basic.comp.out +++ b/Test/baseResults/hlsl.basic.comp.out @@ -59,7 +59,7 @@ local_size = (1, 1, 1) 0:? 'dti' ( in int GlobalInvocationID) 0:? 'gti' ( in int LocalInvocationID) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 35 diff --git a/Test/baseResults/hlsl.basic.geom.out b/Test/baseResults/hlsl.basic.geom.out index fb86b5ba..a2cf7f1f 100644 --- a/Test/baseResults/hlsl.basic.geom.out +++ b/Test/baseResults/hlsl.basic.geom.out @@ -187,7 +187,7 @@ output primitive = line_strip 0:? 'OutputStream.myfloat' (layout( location=0) out float) 0:? 'OutputStream.something' (layout( location=1) out int) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 68 diff --git a/Test/baseResults/hlsl.boolConv.vert.out b/Test/baseResults/hlsl.boolConv.vert.out index 5ce064f9..b4070994 100755 --- a/Test/baseResults/hlsl.boolConv.vert.out +++ b/Test/baseResults/hlsl.boolConv.vert.out @@ -203,7 +203,7 @@ Shader version: 500 0:? 'b' ( global bool) 0:? '@entryPointOutput' ( out 4-component vector of float Position) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 99 diff --git a/Test/baseResults/hlsl.buffer.frag.out b/Test/baseResults/hlsl.buffer.frag.out index c9969a70..40ad65a8 100755 --- a/Test/baseResults/hlsl.buffer.frag.out +++ b/Test/baseResults/hlsl.buffer.frag.out @@ -145,7 +145,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.a' (layout( location=0) out 4-component vector of float) 0:? 'input' ( in 4-component vector of float FragCoord) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 73 diff --git a/Test/baseResults/hlsl.calculatelod.dx10.frag.out b/Test/baseResults/hlsl.calculatelod.dx10.frag.out index 392a56a0..a9a15d98 100644 --- a/Test/baseResults/hlsl.calculatelod.dx10.frag.out +++ b/Test/baseResults/hlsl.calculatelod.dx10.frag.out @@ -355,7 +355,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 148 diff --git a/Test/baseResults/hlsl.cast.frag.out b/Test/baseResults/hlsl.cast.frag.out index 16e85f96..b267ef9e 100755 --- a/Test/baseResults/hlsl.cast.frag.out +++ b/Test/baseResults/hlsl.cast.frag.out @@ -71,7 +71,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'input' (layout( location=0) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 39 diff --git a/Test/baseResults/hlsl.cbuffer-identifier.vert.out b/Test/baseResults/hlsl.cbuffer-identifier.vert.out index 63fb8a89..0f2f748e 100644 --- a/Test/baseResults/hlsl.cbuffer-identifier.vert.out +++ b/Test/baseResults/hlsl.cbuffer-identifier.vert.out @@ -249,7 +249,7 @@ Shader version: 500 0:? 'input.Pos' (layout( location=0) in 4-component vector of float) 0:? 'input.Norm' (layout( location=1) in 3-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 106 diff --git a/Test/baseResults/hlsl.charLit.vert.out b/Test/baseResults/hlsl.charLit.vert.out index a6e50cd0..d2a1fa42 100755 --- a/Test/baseResults/hlsl.charLit.vert.out +++ b/Test/baseResults/hlsl.charLit.vert.out @@ -145,7 +145,7 @@ Shader version: 500 0:? Linker Objects 0:? '@entryPointOutput' ( out 4-component vector of float Position) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 58 diff --git a/Test/baseResults/hlsl.clip.frag.out b/Test/baseResults/hlsl.clip.frag.out index 634945f6..405e5455 100644 --- a/Test/baseResults/hlsl.clip.frag.out +++ b/Test/baseResults/hlsl.clip.frag.out @@ -73,7 +73,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 30 diff --git a/Test/baseResults/hlsl.clipdistance-1.frag.out b/Test/baseResults/hlsl.clipdistance-1.frag.out index 14ec95dc..7bebb7b1 100644 --- a/Test/baseResults/hlsl.clipdistance-1.frag.out +++ b/Test/baseResults/hlsl.clipdistance-1.frag.out @@ -97,7 +97,7 @@ gl_FragCoord origin is upper left 0:? 'clip' ( in 1-element array of float ClipDistance) 0:? 'cull' ( in 1-element array of float CullDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 53 diff --git a/Test/baseResults/hlsl.clipdistance-1.geom.out b/Test/baseResults/hlsl.clipdistance-1.geom.out index 8215b3ae..fbdfc2c6 100644 --- a/Test/baseResults/hlsl.clipdistance-1.geom.out +++ b/Test/baseResults/hlsl.clipdistance-1.geom.out @@ -549,7 +549,7 @@ output primitive = line_strip 0:? 'clip' ( in 3-element array of 4-element array of float ClipDistance) 0:? 'OutputStream.clip' ( out 2-element array of float ClipDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 118 diff --git a/Test/baseResults/hlsl.clipdistance-1.vert.out b/Test/baseResults/hlsl.clipdistance-1.vert.out index 26d001b2..95eca5e6 100644 --- a/Test/baseResults/hlsl.clipdistance-1.vert.out +++ b/Test/baseResults/hlsl.clipdistance-1.vert.out @@ -107,7 +107,7 @@ Shader version: 500 0:? 'clip' ( out 1-element array of float ClipDistance) 0:? 'cull' ( out 1-element array of float CullDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 46 diff --git a/Test/baseResults/hlsl.clipdistance-2.frag.out b/Test/baseResults/hlsl.clipdistance-2.frag.out index c25242f4..244e0781 100644 --- a/Test/baseResults/hlsl.clipdistance-2.frag.out +++ b/Test/baseResults/hlsl.clipdistance-2.frag.out @@ -289,7 +289,7 @@ gl_FragCoord origin is upper left 0:? 'clip' ( in 4-element array of float ClipDistance) 0:? 'cull' ( in 4-element array of float CullDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 84 diff --git a/Test/baseResults/hlsl.clipdistance-2.geom.out b/Test/baseResults/hlsl.clipdistance-2.geom.out index 463f6ca5..95e14669 100644 --- a/Test/baseResults/hlsl.clipdistance-2.geom.out +++ b/Test/baseResults/hlsl.clipdistance-2.geom.out @@ -723,7 +723,7 @@ output primitive = line_strip 0:? 'clip' ( in 3-element array of 4-element array of float ClipDistance) 0:? 'OutputStream.clip' ( out 4-element array of float ClipDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 128 diff --git a/Test/baseResults/hlsl.clipdistance-2.vert.out b/Test/baseResults/hlsl.clipdistance-2.vert.out index 430e5749..a863d7bb 100644 --- a/Test/baseResults/hlsl.clipdistance-2.vert.out +++ b/Test/baseResults/hlsl.clipdistance-2.vert.out @@ -419,7 +419,7 @@ Shader version: 500 0:? 'clip' ( out 4-element array of float ClipDistance) 0:? 'cull' ( out 4-element array of float CullDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 89 diff --git a/Test/baseResults/hlsl.clipdistance-3.frag.out b/Test/baseResults/hlsl.clipdistance-3.frag.out index 7d47dd21..cd5e05b2 100644 --- a/Test/baseResults/hlsl.clipdistance-3.frag.out +++ b/Test/baseResults/hlsl.clipdistance-3.frag.out @@ -97,7 +97,7 @@ gl_FragCoord origin is upper left 0:? 'clip' ( in 2-element array of float ClipDistance) 0:? 'cull' ( in 2-element array of float CullDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 53 diff --git a/Test/baseResults/hlsl.clipdistance-3.geom.out b/Test/baseResults/hlsl.clipdistance-3.geom.out index 4358f9f4..04477dc7 100644 --- a/Test/baseResults/hlsl.clipdistance-3.geom.out +++ b/Test/baseResults/hlsl.clipdistance-3.geom.out @@ -629,7 +629,7 @@ output primitive = line_strip 0:? 'clip' ( in 3-element array of 4-element array of float ClipDistance) 0:? 'OutputStream.clip1' ( out 4-element array of float ClipDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 127 diff --git a/Test/baseResults/hlsl.clipdistance-3.vert.out b/Test/baseResults/hlsl.clipdistance-3.vert.out index e613acaf..07eece03 100644 --- a/Test/baseResults/hlsl.clipdistance-3.vert.out +++ b/Test/baseResults/hlsl.clipdistance-3.vert.out @@ -135,7 +135,7 @@ Shader version: 500 0:? 'clip' ( out 2-element array of float ClipDistance) 0:? 'cull' ( out 2-element array of float CullDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 51 diff --git a/Test/baseResults/hlsl.clipdistance-4.frag.out b/Test/baseResults/hlsl.clipdistance-4.frag.out index fafde799..d3da5682 100644 --- a/Test/baseResults/hlsl.clipdistance-4.frag.out +++ b/Test/baseResults/hlsl.clipdistance-4.frag.out @@ -173,7 +173,7 @@ gl_FragCoord origin is upper left 0:? 'v.Position' ( in 4-component vector of float FragCoord) 0:? 'v.ClipRect' ( in 4-element array of float ClipDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 57 diff --git a/Test/baseResults/hlsl.clipdistance-4.geom.out b/Test/baseResults/hlsl.clipdistance-4.geom.out index 03e3e169..172a5dcb 100644 --- a/Test/baseResults/hlsl.clipdistance-4.geom.out +++ b/Test/baseResults/hlsl.clipdistance-4.geom.out @@ -611,7 +611,7 @@ output primitive = line_strip 0:? 'clip0' ( in 3-element array of 4-element array of float ClipDistance) 0:? 'OutputStream.clip1' ( out 4-element array of float ClipDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 130 diff --git a/Test/baseResults/hlsl.clipdistance-4.vert.out b/Test/baseResults/hlsl.clipdistance-4.vert.out index e5b9c475..a4494311 100644 --- a/Test/baseResults/hlsl.clipdistance-4.vert.out +++ b/Test/baseResults/hlsl.clipdistance-4.vert.out @@ -269,7 +269,7 @@ Shader version: 500 0:? 'v.Position' (layout( location=0) in 4-component vector of float) 0:? '@entryPointOutput.ClipRect' ( out 4-element array of float ClipDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 72 diff --git a/Test/baseResults/hlsl.clipdistance-5.frag.out b/Test/baseResults/hlsl.clipdistance-5.frag.out index e73152d7..3ad4e2d5 100644 --- a/Test/baseResults/hlsl.clipdistance-5.frag.out +++ b/Test/baseResults/hlsl.clipdistance-5.frag.out @@ -231,7 +231,7 @@ gl_FragCoord origin is upper left 0:? 'v.Position' ( in 4-component vector of float FragCoord) 0:? 'v.ClipRect' ( in 4-element array of float ClipDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 62 diff --git a/Test/baseResults/hlsl.clipdistance-5.vert.out b/Test/baseResults/hlsl.clipdistance-5.vert.out index 3b9b8eb4..adc0a893 100644 --- a/Test/baseResults/hlsl.clipdistance-5.vert.out +++ b/Test/baseResults/hlsl.clipdistance-5.vert.out @@ -317,7 +317,7 @@ Shader version: 500 0:? 'v.Position' (layout( location=0) in 4-component vector of float) 0:? '@entryPointOutput.ClipRect' ( out 4-element array of float ClipDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 73 diff --git a/Test/baseResults/hlsl.clipdistance-6.frag.out b/Test/baseResults/hlsl.clipdistance-6.frag.out index 878ee857..f4daf029 100644 --- a/Test/baseResults/hlsl.clipdistance-6.frag.out +++ b/Test/baseResults/hlsl.clipdistance-6.frag.out @@ -281,7 +281,7 @@ gl_FragCoord origin is upper left 0:? 'v.Position' ( in 4-component vector of float FragCoord) 0:? 'v.clip1' ( in 8-element array of float ClipDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 79 diff --git a/Test/baseResults/hlsl.clipdistance-6.vert.out b/Test/baseResults/hlsl.clipdistance-6.vert.out index 5ba1b6e1..c9fd80a5 100644 --- a/Test/baseResults/hlsl.clipdistance-6.vert.out +++ b/Test/baseResults/hlsl.clipdistance-6.vert.out @@ -427,7 +427,7 @@ Shader version: 500 0:? '@entryPointOutput.Position' ( out 4-component vector of float Position) 0:? '@entryPointOutput.clip1' ( out 8-element array of float ClipDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 86 diff --git a/Test/baseResults/hlsl.clipdistance-7.frag.out b/Test/baseResults/hlsl.clipdistance-7.frag.out index b2665c79..ba0047e5 100644 --- a/Test/baseResults/hlsl.clipdistance-7.frag.out +++ b/Test/baseResults/hlsl.clipdistance-7.frag.out @@ -269,7 +269,7 @@ gl_FragCoord origin is upper left 0:? 'v.Position' ( in 4-component vector of float FragCoord) 0:? 'v.clip1' ( in 8-element array of float ClipDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 78 diff --git a/Test/baseResults/hlsl.clipdistance-7.vert.out b/Test/baseResults/hlsl.clipdistance-7.vert.out index ce20c5bc..d80c388d 100644 --- a/Test/baseResults/hlsl.clipdistance-7.vert.out +++ b/Test/baseResults/hlsl.clipdistance-7.vert.out @@ -383,7 +383,7 @@ Shader version: 500 0:? '@entryPointOutput.Position' ( out 4-component vector of float Position) 0:? '@entryPointOutput.clip1' ( out 8-element array of float ClipDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 81 diff --git a/Test/baseResults/hlsl.clipdistance-8.frag.out b/Test/baseResults/hlsl.clipdistance-8.frag.out index b070386b..254c5dbe 100644 --- a/Test/baseResults/hlsl.clipdistance-8.frag.out +++ b/Test/baseResults/hlsl.clipdistance-8.frag.out @@ -185,7 +185,7 @@ gl_FragCoord origin is upper left 0:? 'v.Position' ( in 4-component vector of float FragCoord) 0:? 'v.clip1' ( in 4-element array of float ClipDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 65 diff --git a/Test/baseResults/hlsl.clipdistance-8.vert.out b/Test/baseResults/hlsl.clipdistance-8.vert.out index 73c46d2e..a2a4dadb 100644 --- a/Test/baseResults/hlsl.clipdistance-8.vert.out +++ b/Test/baseResults/hlsl.clipdistance-8.vert.out @@ -239,7 +239,7 @@ Shader version: 500 0:? '@entryPointOutput.Position' ( out 4-component vector of float Position) 0:? '@entryPointOutput.clip1' ( out 4-element array of float ClipDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 62 diff --git a/Test/baseResults/hlsl.clipdistance-9.frag.out b/Test/baseResults/hlsl.clipdistance-9.frag.out index d8a4abe8..107b2559 100644 --- a/Test/baseResults/hlsl.clipdistance-9.frag.out +++ b/Test/baseResults/hlsl.clipdistance-9.frag.out @@ -143,7 +143,7 @@ gl_FragCoord origin is upper left 0:? 'Position' ( in 4-component vector of float FragCoord) 0:? 'clip0' ( in 4-element array of float ClipDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 68 diff --git a/Test/baseResults/hlsl.clipdistance-9.vert.out b/Test/baseResults/hlsl.clipdistance-9.vert.out index 3a3f9cc0..73a5deb9 100644 --- a/Test/baseResults/hlsl.clipdistance-9.vert.out +++ b/Test/baseResults/hlsl.clipdistance-9.vert.out @@ -193,7 +193,7 @@ Shader version: 500 0:? '@entryPointOutput.Position' ( out 4-component vector of float Position) 0:? 'clip0' ( out 4-element array of float ClipDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 67 diff --git a/Test/baseResults/hlsl.color.hull.tesc.out b/Test/baseResults/hlsl.color.hull.tesc.out index bbcb19e2..fc03748b 100644 --- a/Test/baseResults/hlsl.color.hull.tesc.out +++ b/Test/baseResults/hlsl.color.hull.tesc.out @@ -355,7 +355,7 @@ triangle order = cw 0:? '@patchConstantOutput.edges' ( patch out 4-element array of float TessLevelOuter) 0:? '@patchConstantOutput.inside' ( patch out 2-element array of float TessLevelInner) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 127 diff --git a/Test/baseResults/hlsl.comparison.vec.frag.out b/Test/baseResults/hlsl.comparison.vec.frag.out index 80bc467a..c6b4829b 100644 --- a/Test/baseResults/hlsl.comparison.vec.frag.out +++ b/Test/baseResults/hlsl.comparison.vec.frag.out @@ -261,7 +261,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform 4-component vector of float uf4}) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 96 diff --git a/Test/baseResults/hlsl.conditional.frag.out b/Test/baseResults/hlsl.conditional.frag.out index 31e3475d..a68951d2 100755 --- a/Test/baseResults/hlsl.conditional.frag.out +++ b/Test/baseResults/hlsl.conditional.frag.out @@ -521,7 +521,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'input' (layout( location=0) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 220 diff --git a/Test/baseResults/hlsl.constantbuffer.frag.out b/Test/baseResults/hlsl.constantbuffer.frag.out index bedee9f4..f60fcf68 100644 --- a/Test/baseResults/hlsl.constantbuffer.frag.out +++ b/Test/baseResults/hlsl.constantbuffer.frag.out @@ -131,7 +131,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{layout( row_major std140) uniform int c1}) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 66 diff --git a/Test/baseResults/hlsl.constructArray.vert.out b/Test/baseResults/hlsl.constructArray.vert.out index 17d8af99..759d4cc1 100755 --- a/Test/baseResults/hlsl.constructArray.vert.out +++ b/Test/baseResults/hlsl.constructArray.vert.out @@ -267,7 +267,7 @@ Shader version: 500 0:? Linker Objects 0:? '@entryPointOutput' ( out 4-component vector of float Position) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 89 diff --git a/Test/baseResults/hlsl.constructexpr.frag.out b/Test/baseResults/hlsl.constructexpr.frag.out index 54637ff6..e657b51e 100644 --- a/Test/baseResults/hlsl.constructexpr.frag.out +++ b/Test/baseResults/hlsl.constructexpr.frag.out @@ -103,7 +103,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput.color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 40 diff --git a/Test/baseResults/hlsl.constructimat.frag.out b/Test/baseResults/hlsl.constructimat.frag.out index 47d4bb90..460118be 100644 --- a/Test/baseResults/hlsl.constructimat.frag.out +++ b/Test/baseResults/hlsl.constructimat.frag.out @@ -543,7 +543,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput' (layout( location=0) out int) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 98 diff --git a/Test/baseResults/hlsl.dashI.vert.out b/Test/baseResults/hlsl.dashI.vert.out index f66cd48e..cad3d10e 100644 --- a/Test/baseResults/hlsl.dashI.vert.out +++ b/Test/baseResults/hlsl.dashI.vert.out @@ -1,5 +1,5 @@ hlsl.dashI.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 40 diff --git a/Test/baseResults/hlsl.deadFunctionMissingBody.vert.out b/Test/baseResults/hlsl.deadFunctionMissingBody.vert.out index fe7319da..f1f9cc63 100644 --- a/Test/baseResults/hlsl.deadFunctionMissingBody.vert.out +++ b/Test/baseResults/hlsl.deadFunctionMissingBody.vert.out @@ -1,5 +1,5 @@ hlsl.deadFunctionMissingBody.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 18 diff --git a/Test/baseResults/hlsl.depthGreater.frag.out b/Test/baseResults/hlsl.depthGreater.frag.out index e55ee6cc..fe398d5e 100755 --- a/Test/baseResults/hlsl.depthGreater.frag.out +++ b/Test/baseResults/hlsl.depthGreater.frag.out @@ -49,7 +49,7 @@ using depth_greater 0:? Linker Objects 0:? 'depth' ( out float FragDepth) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 20 diff --git a/Test/baseResults/hlsl.depthLess.frag.out b/Test/baseResults/hlsl.depthLess.frag.out index 299fac2f..a22768f2 100755 --- a/Test/baseResults/hlsl.depthLess.frag.out +++ b/Test/baseResults/hlsl.depthLess.frag.out @@ -41,7 +41,7 @@ using depth_less 0:? Linker Objects 0:? '@entryPointOutput' ( out float FragDepth) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 16 diff --git a/Test/baseResults/hlsl.discard.frag.out b/Test/baseResults/hlsl.discard.frag.out index 81e69946..f24b4962 100755 --- a/Test/baseResults/hlsl.discard.frag.out +++ b/Test/baseResults/hlsl.discard.frag.out @@ -107,7 +107,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? 'input' (layout( location=0) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 50 diff --git a/Test/baseResults/hlsl.doLoop.frag.out b/Test/baseResults/hlsl.doLoop.frag.out index da5c3e0c..eb663ce5 100755 --- a/Test/baseResults/hlsl.doLoop.frag.out +++ b/Test/baseResults/hlsl.doLoop.frag.out @@ -143,7 +143,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'input' (layout( location=0) in float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 71 diff --git a/Test/baseResults/hlsl.domain.1.tese.out b/Test/baseResults/hlsl.domain.1.tese.out index 3b7df5f1..ec894228 100644 --- a/Test/baseResults/hlsl.domain.1.tese.out +++ b/Test/baseResults/hlsl.domain.1.tese.out @@ -285,7 +285,7 @@ triangle order = none 0:? 'pcf_data.flTessFactor' ( patch in 4-element array of float TessLevelOuter) 0:? 'pcf_data.flInsideTessFactor' ( patch in 2-element array of float TessLevelInner) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 103 diff --git a/Test/baseResults/hlsl.domain.2.tese.out b/Test/baseResults/hlsl.domain.2.tese.out index 0d7d7e8d..62960477 100644 --- a/Test/baseResults/hlsl.domain.2.tese.out +++ b/Test/baseResults/hlsl.domain.2.tese.out @@ -283,7 +283,7 @@ triangle order = none 0:? 'pcf_data.flInsideTessFactor' ( patch in 2-element array of float TessLevelInner) 0:? 'pcf_data.foo' (layout( location=2) patch in float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 98 diff --git a/Test/baseResults/hlsl.domain.3.tese.out b/Test/baseResults/hlsl.domain.3.tese.out index bcbd298d..ca4e2d40 100644 --- a/Test/baseResults/hlsl.domain.3.tese.out +++ b/Test/baseResults/hlsl.domain.3.tese.out @@ -263,7 +263,7 @@ triangle order = none 0:? 'pcf_data.flTessFactor' ( patch in 4-element array of float TessLevelOuter) 0:? 'pcf_data.flInsideTessFactor' ( patch in 2-element array of float TessLevelInner) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 100 diff --git a/Test/baseResults/hlsl.emptystruct.init.vert.out b/Test/baseResults/hlsl.emptystruct.init.vert.out index 32f17d20..9c43a9f4 100644 --- a/Test/baseResults/hlsl.emptystruct.init.vert.out +++ b/Test/baseResults/hlsl.emptystruct.init.vert.out @@ -59,7 +59,7 @@ Shader version: 500 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'vertexIndex' (layout( location=0) in uint) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 29 diff --git a/Test/baseResults/hlsl.emptystructreturn.frag.out b/Test/baseResults/hlsl.emptystructreturn.frag.out index 45a5ceaf..4a61d1db 100644 --- a/Test/baseResults/hlsl.emptystructreturn.frag.out +++ b/Test/baseResults/hlsl.emptystructreturn.frag.out @@ -49,7 +49,7 @@ gl_FragCoord origin is upper left 0:? 'i' ( temp structure{}) 0:? Linker Objects -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 27 diff --git a/Test/baseResults/hlsl.emptystructreturn.vert.out b/Test/baseResults/hlsl.emptystructreturn.vert.out index 0032ebdb..c901c194 100644 --- a/Test/baseResults/hlsl.emptystructreturn.vert.out +++ b/Test/baseResults/hlsl.emptystructreturn.vert.out @@ -47,7 +47,7 @@ Shader version: 500 0:? 'i' ( temp structure{}) 0:? Linker Objects -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 27 diff --git a/Test/baseResults/hlsl.entry-in.frag.out b/Test/baseResults/hlsl.entry-in.frag.out index 91a33877..063804da 100755 --- a/Test/baseResults/hlsl.entry-in.frag.out +++ b/Test/baseResults/hlsl.entry-in.frag.out @@ -165,7 +165,7 @@ gl_FragCoord origin is upper left 0:? 'i.v' (layout( location=0) in 2-component vector of float) 0:? 'i.i2' (layout( location=1) flat in 2-component vector of int) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 74 diff --git a/Test/baseResults/hlsl.entry-out.frag.out b/Test/baseResults/hlsl.entry-out.frag.out index 11578b02..7d7bb6f0 100755 --- a/Test/baseResults/hlsl.entry-out.frag.out +++ b/Test/baseResults/hlsl.entry-out.frag.out @@ -243,7 +243,7 @@ gl_FragCoord origin is upper left 0:? 'out3.v' (layout( location=4) out 2-component vector of float) 0:? 'out3.i' (layout( location=5) out 2-component vector of int) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 89 diff --git a/Test/baseResults/hlsl.entry.rename.frag.out b/Test/baseResults/hlsl.entry.rename.frag.out index 989cac59..9a555dd8 100644 --- a/Test/baseResults/hlsl.entry.rename.frag.out +++ b/Test/baseResults/hlsl.entry.rename.frag.out @@ -71,7 +71,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform int also_not_the_entry_point}) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 32 diff --git a/Test/baseResults/hlsl.explicitDescriptorSet-2.frag.out b/Test/baseResults/hlsl.explicitDescriptorSet-2.frag.out index 82c6db4c..2619e4e3 100644 --- a/Test/baseResults/hlsl.explicitDescriptorSet-2.frag.out +++ b/Test/baseResults/hlsl.explicitDescriptorSet-2.frag.out @@ -1,5 +1,5 @@ hlsl.explicitDescriptorSet.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 31 diff --git a/Test/baseResults/hlsl.explicitDescriptorSet.frag.out b/Test/baseResults/hlsl.explicitDescriptorSet.frag.out index 7d866ff0..4e5fc677 100644 --- a/Test/baseResults/hlsl.explicitDescriptorSet.frag.out +++ b/Test/baseResults/hlsl.explicitDescriptorSet.frag.out @@ -1,5 +1,5 @@ hlsl.explicitDescriptorSet.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 31 diff --git a/Test/baseResults/hlsl.flatten.return.frag.out b/Test/baseResults/hlsl.flatten.return.frag.out index 8c338bb5..2ff5eeb8 100644 --- a/Test/baseResults/hlsl.flatten.return.frag.out +++ b/Test/baseResults/hlsl.flatten.return.frag.out @@ -117,7 +117,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.other_struct_member2' (layout( location=2) out float) 0:? '@entryPointOutput.other_struct_member3' (layout( location=3) out float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 49 diff --git a/Test/baseResults/hlsl.flattenOpaque.frag.out b/Test/baseResults/hlsl.flattenOpaque.frag.out index 900999c4..c6dc0549 100755 --- a/Test/baseResults/hlsl.flattenOpaque.frag.out +++ b/Test/baseResults/hlsl.flattenOpaque.frag.out @@ -294,7 +294,7 @@ gl_FragCoord origin is upper left 0:? 's2.tex' ( uniform texture2D) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 122 diff --git a/Test/baseResults/hlsl.flattenOpaqueInit.vert.out b/Test/baseResults/hlsl.flattenOpaqueInit.vert.out index 1a9b1555..33aee900 100755 --- a/Test/baseResults/hlsl.flattenOpaqueInit.vert.out +++ b/Test/baseResults/hlsl.flattenOpaqueInit.vert.out @@ -164,7 +164,7 @@ Shader version: 500 0:? 'g_tInputTexture' ( uniform texture2D) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 82 diff --git a/Test/baseResults/hlsl.flattenOpaqueInitMix.vert.out b/Test/baseResults/hlsl.flattenOpaqueInitMix.vert.out index d50c6c79..f867f241 100755 --- a/Test/baseResults/hlsl.flattenOpaqueInitMix.vert.out +++ b/Test/baseResults/hlsl.flattenOpaqueInitMix.vert.out @@ -106,7 +106,7 @@ Shader version: 500 0:? 'g_tInputTexture' ( uniform texture2D) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 59 diff --git a/Test/baseResults/hlsl.flattenSubset.frag.out b/Test/baseResults/hlsl.flattenSubset.frag.out index 69f2eaca..e5e182fb 100755 --- a/Test/baseResults/hlsl.flattenSubset.frag.out +++ b/Test/baseResults/hlsl.flattenSubset.frag.out @@ -114,7 +114,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'vpos' (layout( location=0) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 54 diff --git a/Test/baseResults/hlsl.flattenSubset2.frag.out b/Test/baseResults/hlsl.flattenSubset2.frag.out index 4ee226cb..c6c16e6c 100755 --- a/Test/baseResults/hlsl.flattenSubset2.frag.out +++ b/Test/baseResults/hlsl.flattenSubset2.frag.out @@ -148,7 +148,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'vpos' (layout( location=0) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 56 diff --git a/Test/baseResults/hlsl.float1.frag.out b/Test/baseResults/hlsl.float1.frag.out index 13071750..56e1aa93 100755 --- a/Test/baseResults/hlsl.float1.frag.out +++ b/Test/baseResults/hlsl.float1.frag.out @@ -64,7 +64,7 @@ gl_FragCoord origin is upper left 0:? 'f1' ( global 1-component vector of float) 0:? 'scalar' ( global float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 27 diff --git a/Test/baseResults/hlsl.float4.frag.out b/Test/baseResults/hlsl.float4.frag.out index 528b8d1d..c457cd31 100755 --- a/Test/baseResults/hlsl.float4.frag.out +++ b/Test/baseResults/hlsl.float4.frag.out @@ -41,7 +41,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform 4-component vector of float AmbientColor, uniform bool ff1, layout( offset=20) uniform float ff2, layout( binding=0 offset=32) uniform 4-component vector of float ff3, layout( binding=1 offset=48) uniform 4-component vector of float ff4}) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 26 diff --git a/Test/baseResults/hlsl.forLoop.frag.out b/Test/baseResults/hlsl.forLoop.frag.out index e7321577..77e78fe0 100755 --- a/Test/baseResults/hlsl.forLoop.frag.out +++ b/Test/baseResults/hlsl.forLoop.frag.out @@ -401,7 +401,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'input' (layout( location=0) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 183 diff --git a/Test/baseResults/hlsl.fraggeom.frag.out b/Test/baseResults/hlsl.fraggeom.frag.out index 2dfb2fac..6dd88625 100644 --- a/Test/baseResults/hlsl.fraggeom.frag.out +++ b/Test/baseResults/hlsl.fraggeom.frag.out @@ -63,7 +63,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 25 diff --git a/Test/baseResults/hlsl.gather.array.dx10.frag.out b/Test/baseResults/hlsl.gather.array.dx10.frag.out index b01c4712..725f309b 100644 --- a/Test/baseResults/hlsl.gather.array.dx10.frag.out +++ b/Test/baseResults/hlsl.gather.array.dx10.frag.out @@ -259,7 +259,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 124 diff --git a/Test/baseResults/hlsl.gather.basic.dx10.frag.out b/Test/baseResults/hlsl.gather.basic.dx10.frag.out index 4acd7c14..bebaf905 100644 --- a/Test/baseResults/hlsl.gather.basic.dx10.frag.out +++ b/Test/baseResults/hlsl.gather.basic.dx10.frag.out @@ -255,7 +255,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 135 diff --git a/Test/baseResults/hlsl.gather.basic.dx10.vert.out b/Test/baseResults/hlsl.gather.basic.dx10.vert.out index 6e3a896d..34cf7944 100644 --- a/Test/baseResults/hlsl.gather.basic.dx10.vert.out +++ b/Test/baseResults/hlsl.gather.basic.dx10.vert.out @@ -219,7 +219,7 @@ Shader version: 500 0:? 'g_tTexcdu4' ( uniform utextureCube) 0:? '@entryPointOutput.Pos' ( out 4-component vector of float Position) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 126 diff --git a/Test/baseResults/hlsl.gather.offset.dx10.frag.out b/Test/baseResults/hlsl.gather.offset.dx10.frag.out index b13361df..70737776 100644 --- a/Test/baseResults/hlsl.gather.offset.dx10.frag.out +++ b/Test/baseResults/hlsl.gather.offset.dx10.frag.out @@ -205,7 +205,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 114 diff --git a/Test/baseResults/hlsl.gather.offsetarray.dx10.frag.out b/Test/baseResults/hlsl.gather.offsetarray.dx10.frag.out index 2a65867e..599f68f9 100644 --- a/Test/baseResults/hlsl.gather.offsetarray.dx10.frag.out +++ b/Test/baseResults/hlsl.gather.offsetarray.dx10.frag.out @@ -199,7 +199,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 97 diff --git a/Test/baseResults/hlsl.gatherRGBA.array.dx10.frag.out b/Test/baseResults/hlsl.gatherRGBA.array.dx10.frag.out index ad24db0f..41e2ed42 100644 --- a/Test/baseResults/hlsl.gatherRGBA.array.dx10.frag.out +++ b/Test/baseResults/hlsl.gatherRGBA.array.dx10.frag.out @@ -747,7 +747,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 255 diff --git a/Test/baseResults/hlsl.gatherRGBA.basic.dx10.frag.out b/Test/baseResults/hlsl.gatherRGBA.basic.dx10.frag.out index f9e0d41f..5de8d7af 100644 --- a/Test/baseResults/hlsl.gatherRGBA.basic.dx10.frag.out +++ b/Test/baseResults/hlsl.gatherRGBA.basic.dx10.frag.out @@ -755,7 +755,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 265 diff --git a/Test/baseResults/hlsl.gatherRGBA.offset.dx10.frag.out b/Test/baseResults/hlsl.gatherRGBA.offset.dx10.frag.out index 80c1408e..21653f6c 100644 --- a/Test/baseResults/hlsl.gatherRGBA.offset.dx10.frag.out +++ b/Test/baseResults/hlsl.gatherRGBA.offset.dx10.frag.out @@ -1259,7 +1259,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 399 diff --git a/Test/baseResults/hlsl.gatherRGBA.offsetarray.dx10.frag.out b/Test/baseResults/hlsl.gatherRGBA.offsetarray.dx10.frag.out index 290f0180..3739787a 100644 --- a/Test/baseResults/hlsl.gatherRGBA.offsetarray.dx10.frag.out +++ b/Test/baseResults/hlsl.gatherRGBA.offsetarray.dx10.frag.out @@ -1251,7 +1251,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 389 diff --git a/Test/baseResults/hlsl.gathercmpRGBA.offset.dx10.frag.out b/Test/baseResults/hlsl.gathercmpRGBA.offset.dx10.frag.out index 4c3c6699..3351a993 100644 --- a/Test/baseResults/hlsl.gathercmpRGBA.offset.dx10.frag.out +++ b/Test/baseResults/hlsl.gathercmpRGBA.offset.dx10.frag.out @@ -453,7 +453,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 164 diff --git a/Test/baseResults/hlsl.getdimensions.dx10.frag.out b/Test/baseResults/hlsl.getdimensions.dx10.frag.out index 93cc6a3a..7b5da68a 100644 --- a/Test/baseResults/hlsl.getdimensions.dx10.frag.out +++ b/Test/baseResults/hlsl.getdimensions.dx10.frag.out @@ -2315,7 +2315,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 550 diff --git a/Test/baseResults/hlsl.getdimensions.dx10.vert.out b/Test/baseResults/hlsl.getdimensions.dx10.vert.out index 61e44e15..e407bb04 100644 --- a/Test/baseResults/hlsl.getdimensions.dx10.vert.out +++ b/Test/baseResults/hlsl.getdimensions.dx10.vert.out @@ -115,7 +115,7 @@ Shader version: 500 0:? 'g_tTex1df4' (layout( binding=0) uniform texture1D) 0:? '@entryPointOutput.Pos' ( out 4-component vector of float Position) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 48 diff --git a/Test/baseResults/hlsl.getdimensions.rw.dx10.frag.out b/Test/baseResults/hlsl.getdimensions.rw.dx10.frag.out index 396fc5d9..6f24423f 100644 --- a/Test/baseResults/hlsl.getdimensions.rw.dx10.frag.out +++ b/Test/baseResults/hlsl.getdimensions.rw.dx10.frag.out @@ -715,7 +715,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 232 diff --git a/Test/baseResults/hlsl.getsampleposition.dx10.frag.out b/Test/baseResults/hlsl.getsampleposition.dx10.frag.out index 8c3bff5d..b5070e3d 100644 --- a/Test/baseResults/hlsl.getsampleposition.dx10.frag.out +++ b/Test/baseResults/hlsl.getsampleposition.dx10.frag.out @@ -577,7 +577,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) 0:? 'sample' (layout( location=0) flat in int) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 221 diff --git a/Test/baseResults/hlsl.global-const-init.frag.out b/Test/baseResults/hlsl.global-const-init.frag.out index c9a525c2..3e99bfa8 100644 --- a/Test/baseResults/hlsl.global-const-init.frag.out +++ b/Test/baseResults/hlsl.global-const-init.frag.out @@ -101,7 +101,7 @@ gl_FragCoord origin is upper left 0:? 8.000000 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 50 diff --git a/Test/baseResults/hlsl.gs-hs-mix.tesc.out b/Test/baseResults/hlsl.gs-hs-mix.tesc.out index 74822af7..c4694f9e 100644 --- a/Test/baseResults/hlsl.gs-hs-mix.tesc.out +++ b/Test/baseResults/hlsl.gs-hs-mix.tesc.out @@ -797,7 +797,7 @@ triangle order = ccw 0:? '@patchConstantOutput.InsideTessFactor' ( patch out 2-element array of float TessLevelInner) 0:? '@patchConstantOutput' (layout( location=1) patch out structure{ temp 3-element array of 3-component vector of float NormalWS}) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 216 diff --git a/Test/baseResults/hlsl.hlslOffset.vert.out b/Test/baseResults/hlsl.hlslOffset.vert.out index 6a1369f7..8ccd10d6 100644 --- a/Test/baseResults/hlsl.hlslOffset.vert.out +++ b/Test/baseResults/hlsl.hlslOffset.vert.out @@ -25,7 +25,7 @@ Shader version: 500 0:? Linker Objects 0:? 'anon@0' (layout( row_major std140) uniform block{layout( row_major std140) uniform float m0, layout( row_major std140) uniform 3-component vector of float m4, layout( row_major std140) uniform float m16, layout( row_major std140 offset=20) uniform 3-component vector of float m20, layout( row_major std140 offset=36) uniform 3-component vector of float m36, layout( row_major std140 offset=56) uniform 2-component vector of float m56, layout( row_major std140) uniform float m64, layout( row_major std140) uniform 2-component vector of float m68, layout( row_major std140) uniform float m76, layout( row_major std140) uniform float m80, layout( row_major std140) uniform 1-element array of 2-component vector of float m96}) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 18 diff --git a/Test/baseResults/hlsl.hull.1.tesc.out b/Test/baseResults/hlsl.hull.1.tesc.out index e8a8036f..f17f50fe 100644 --- a/Test/baseResults/hlsl.hull.1.tesc.out +++ b/Test/baseResults/hlsl.hull.1.tesc.out @@ -223,7 +223,7 @@ vertex spacing = equal_spacing 0:? 'pid' ( in uint PrimitiveID) 0:? '@patchConstantOutput.edges' ( patch out 4-element array of float TessLevelOuter) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 89 diff --git a/Test/baseResults/hlsl.hull.2.tesc.out b/Test/baseResults/hlsl.hull.2.tesc.out index 49ed33ad..1db386fb 100644 --- a/Test/baseResults/hlsl.hull.2.tesc.out +++ b/Test/baseResults/hlsl.hull.2.tesc.out @@ -219,7 +219,7 @@ vertex spacing = equal_spacing 0:? 'pos' ( in 4-component vector of float Position) 0:? '@patchConstantOutput.edges' ( patch out 4-element array of float TessLevelOuter) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 91 diff --git a/Test/baseResults/hlsl.hull.3.tesc.out b/Test/baseResults/hlsl.hull.3.tesc.out index da72657e..bbfb6a75 100755 --- a/Test/baseResults/hlsl.hull.3.tesc.out +++ b/Test/baseResults/hlsl.hull.3.tesc.out @@ -219,7 +219,7 @@ vertex spacing = equal_spacing 0:? 'pos' ( in 4-component vector of float Position) 0:? '@patchConstantOutput.edges' ( patch out 4-element array of float TessLevelOuter) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 91 diff --git a/Test/baseResults/hlsl.hull.4.tesc.out b/Test/baseResults/hlsl.hull.4.tesc.out index 0aa39f36..dae5b49d 100644 --- a/Test/baseResults/hlsl.hull.4.tesc.out +++ b/Test/baseResults/hlsl.hull.4.tesc.out @@ -475,7 +475,7 @@ triangle order = cw 0:? '@patchConstantOutput.fTessFactor' ( patch out 4-element array of float TessLevelOuter) 0:? '@patchConstantOutput.fInsideTessFactor' ( patch out 2-element array of float TessLevelInner) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 127 diff --git a/Test/baseResults/hlsl.hull.ctrlpt-1.tesc.out b/Test/baseResults/hlsl.hull.ctrlpt-1.tesc.out index aa5eb450..a9666fb5 100644 --- a/Test/baseResults/hlsl.hull.ctrlpt-1.tesc.out +++ b/Test/baseResults/hlsl.hull.ctrlpt-1.tesc.out @@ -395,7 +395,7 @@ triangle order = cw 0:? '@patchConstantOutput.tfactor' ( patch out 4-element array of float TessLevelOuter) 0:? '@patchConstantOutput.flInFactor' ( patch out 2-element array of float TessLevelInner) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 124 diff --git a/Test/baseResults/hlsl.hull.ctrlpt-2.tesc.out b/Test/baseResults/hlsl.hull.ctrlpt-2.tesc.out index 8c614c41..791edc45 100644 --- a/Test/baseResults/hlsl.hull.ctrlpt-2.tesc.out +++ b/Test/baseResults/hlsl.hull.ctrlpt-2.tesc.out @@ -413,7 +413,7 @@ triangle order = cw 0:? '@patchConstantOutput.tfactor' ( patch out 4-element array of float TessLevelOuter) 0:? '@patchConstantOutput.flInFactor' ( patch out 2-element array of float TessLevelInner) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 126 diff --git a/Test/baseResults/hlsl.hull.void.tesc.out b/Test/baseResults/hlsl.hull.void.tesc.out index 30373465..fa151946 100644 --- a/Test/baseResults/hlsl.hull.void.tesc.out +++ b/Test/baseResults/hlsl.hull.void.tesc.out @@ -107,7 +107,7 @@ triangle order = ccw 0:? 'ip' (layout( location=0) in 3-element array of structure{ temp 3-component vector of float cpoint}) 0:? 'InvocationId' ( in uint InvocationID) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 55 diff --git a/Test/baseResults/hlsl.identifier.sample.frag.out b/Test/baseResults/hlsl.identifier.sample.frag.out index a05ec2ac..9e1a5060 100644 --- a/Test/baseResults/hlsl.identifier.sample.frag.out +++ b/Test/baseResults/hlsl.identifier.sample.frag.out @@ -85,7 +85,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 33 diff --git a/Test/baseResults/hlsl.if.frag.out b/Test/baseResults/hlsl.if.frag.out index fd666a4e..32dcb30b 100755 --- a/Test/baseResults/hlsl.if.frag.out +++ b/Test/baseResults/hlsl.if.frag.out @@ -215,7 +215,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'input' (layout( location=0) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 103 diff --git a/Test/baseResults/hlsl.implicitBool.frag.out b/Test/baseResults/hlsl.implicitBool.frag.out index 7f0a2e71..66e041f3 100755 --- a/Test/baseResults/hlsl.implicitBool.frag.out +++ b/Test/baseResults/hlsl.implicitBool.frag.out @@ -333,7 +333,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform float condf, uniform int condi, uniform 1-component vector of float condf1, uniform 1-component vector of int condi1}) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 140 diff --git a/Test/baseResults/hlsl.include.vert.out b/Test/baseResults/hlsl.include.vert.out index cd830af9..4437bc1d 100755 --- a/Test/baseResults/hlsl.include.vert.out +++ b/Test/baseResults/hlsl.include.vert.out @@ -1,5 +1,5 @@ ../Test/hlsl.include.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 44 diff --git a/Test/baseResults/hlsl.inf.vert.out b/Test/baseResults/hlsl.inf.vert.out index 98984308..8ee93eed 100755 --- a/Test/baseResults/hlsl.inf.vert.out +++ b/Test/baseResults/hlsl.inf.vert.out @@ -111,7 +111,7 @@ Shader version: 500 0:? Linker Objects 0:? '@entryPointOutput' ( out 4-component vector of float Position) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 37 diff --git a/Test/baseResults/hlsl.init.frag.out b/Test/baseResults/hlsl.init.frag.out index 38a6371c..33122aba 100755 --- a/Test/baseResults/hlsl.init.frag.out +++ b/Test/baseResults/hlsl.init.frag.out @@ -330,7 +330,7 @@ gl_FragCoord origin is upper left 0:? 'input' (layout( location=0) in 4-component vector of float) 0:? 'anon@0' (layout( row_major std140) uniform block{layout( row_major std140) uniform float a, layout( row_major std140) uniform float b, layout( row_major std140) uniform float c}) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 110 diff --git a/Test/baseResults/hlsl.init2.frag.out b/Test/baseResults/hlsl.init2.frag.out index 9b9f95e8..d476e60e 100644 --- a/Test/baseResults/hlsl.init2.frag.out +++ b/Test/baseResults/hlsl.init2.frag.out @@ -357,7 +357,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput.color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 112 diff --git a/Test/baseResults/hlsl.inoutquals.frag.out b/Test/baseResults/hlsl.inoutquals.frag.out index 823943ab..c5529b78 100644 --- a/Test/baseResults/hlsl.inoutquals.frag.out +++ b/Test/baseResults/hlsl.inoutquals.frag.out @@ -205,7 +205,7 @@ gl_FragCoord origin is upper left 0:? 'inpos' ( noperspective in 4-component vector of float FragCoord) 0:? 'sampleMask' ( out int SampleMaskIn) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 88 diff --git a/Test/baseResults/hlsl.intrinsic.frexp.frag.out b/Test/baseResults/hlsl.intrinsic.frexp.frag.out index cf901ec7..400d6049 100644 --- a/Test/baseResults/hlsl.intrinsic.frexp.frag.out +++ b/Test/baseResults/hlsl.intrinsic.frexp.frag.out @@ -189,7 +189,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput.color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 98 diff --git a/Test/baseResults/hlsl.intrinsic.frexp.vert.out b/Test/baseResults/hlsl.intrinsic.frexp.vert.out index 20d37e8f..a8aa96be 100644 --- a/Test/baseResults/hlsl.intrinsic.frexp.vert.out +++ b/Test/baseResults/hlsl.intrinsic.frexp.vert.out @@ -112,7 +112,7 @@ Shader version: 500 0:? 4.000000 0:? Linker Objects -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 78 diff --git a/Test/baseResults/hlsl.intrinsics.barriers.comp.out b/Test/baseResults/hlsl.intrinsics.barriers.comp.out index b2ec10f8..0a9cb140 100644 --- a/Test/baseResults/hlsl.intrinsics.barriers.comp.out +++ b/Test/baseResults/hlsl.intrinsics.barriers.comp.out @@ -51,7 +51,7 @@ local_size = (1, 1, 1) 0:? Linker Objects 0:? '@entryPointOutput' (layout( location=0) out float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 22 diff --git a/Test/baseResults/hlsl.intrinsics.comp.out b/Test/baseResults/hlsl.intrinsics.comp.out index b5b282ba..0ccddd29 100644 --- a/Test/baseResults/hlsl.intrinsics.comp.out +++ b/Test/baseResults/hlsl.intrinsics.comp.out @@ -715,7 +715,7 @@ local_size = (1, 1, 1) 0:? 'inU0' (layout( location=3) in 4-component vector of uint) 0:? 'inU1' (layout( location=4) in 4-component vector of uint) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 265 diff --git a/Test/baseResults/hlsl.intrinsics.d3dcolortoubyte4.frag.out b/Test/baseResults/hlsl.intrinsics.d3dcolortoubyte4.frag.out index c469ab15..20ee2229 100644 --- a/Test/baseResults/hlsl.intrinsics.d3dcolortoubyte4.frag.out +++ b/Test/baseResults/hlsl.intrinsics.d3dcolortoubyte4.frag.out @@ -73,7 +73,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform 4-component vector of float col4}) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of int) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 29 diff --git a/Test/baseResults/hlsl.intrinsics.double.frag.out b/Test/baseResults/hlsl.intrinsics.double.frag.out index 44d74f7e..500d1e1f 100644 --- a/Test/baseResults/hlsl.intrinsics.double.frag.out +++ b/Test/baseResults/hlsl.intrinsics.double.frag.out @@ -163,7 +163,7 @@ gl_FragCoord origin is upper left 0:? 'inU1a' (layout( location=8) flat in uint) 0:? 'inU1b' (layout( location=9) flat in uint) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 90 diff --git a/Test/baseResults/hlsl.intrinsics.evalfns.frag.out b/Test/baseResults/hlsl.intrinsics.evalfns.frag.out index f1c2114f..addaa25d 100644 --- a/Test/baseResults/hlsl.intrinsics.evalfns.frag.out +++ b/Test/baseResults/hlsl.intrinsics.evalfns.frag.out @@ -153,7 +153,7 @@ gl_FragCoord origin is upper left 0:? 'inF4' (layout( location=3) in 4-component vector of float) 0:? 'inI2' (layout( location=4) flat in 2-component vector of int) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 80 diff --git a/Test/baseResults/hlsl.intrinsics.f1632.frag.out b/Test/baseResults/hlsl.intrinsics.f1632.frag.out index 3d187477..72520bc4 100644 --- a/Test/baseResults/hlsl.intrinsics.f1632.frag.out +++ b/Test/baseResults/hlsl.intrinsics.f1632.frag.out @@ -259,7 +259,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 103 diff --git a/Test/baseResults/hlsl.intrinsics.f3216.frag.out b/Test/baseResults/hlsl.intrinsics.f3216.frag.out index fa07adac..b6d65873 100644 --- a/Test/baseResults/hlsl.intrinsics.f3216.frag.out +++ b/Test/baseResults/hlsl.intrinsics.f3216.frag.out @@ -269,7 +269,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 106 diff --git a/Test/baseResults/hlsl.intrinsics.frag.out b/Test/baseResults/hlsl.intrinsics.frag.out index 6b6c7055..bac6fabe 100644 --- a/Test/baseResults/hlsl.intrinsics.frag.out +++ b/Test/baseResults/hlsl.intrinsics.frag.out @@ -5631,7 +5631,7 @@ gl_FragCoord origin is upper left 0:? 'gs_uc4' ( shared 4-component vector of uint) 0:? '@entryPointOutput.color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 1832 diff --git a/Test/baseResults/hlsl.intrinsics.lit.frag.out b/Test/baseResults/hlsl.intrinsics.lit.frag.out index d530fa53..c2c7e851 100644 --- a/Test/baseResults/hlsl.intrinsics.lit.frag.out +++ b/Test/baseResults/hlsl.intrinsics.lit.frag.out @@ -117,7 +117,7 @@ gl_FragCoord origin is upper left 0:? 'n_dot_h' (layout( location=1) in float) 0:? 'm' (layout( location=2) in float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 52 diff --git a/Test/baseResults/hlsl.intrinsics.negative.comp.out b/Test/baseResults/hlsl.intrinsics.negative.comp.out index fc39c1ac..a1a61d8b 100644 --- a/Test/baseResults/hlsl.intrinsics.negative.comp.out +++ b/Test/baseResults/hlsl.intrinsics.negative.comp.out @@ -179,7 +179,7 @@ local_size = (1, 1, 1) 0:? 'inF2' (layout( location=2) in 4-component vector of float) 0:? 'inI0' (layout( location=3) in 4-component vector of int) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 99 diff --git a/Test/baseResults/hlsl.intrinsics.negative.vert.out b/Test/baseResults/hlsl.intrinsics.negative.vert.out index dd981730..f1dc1c33 100644 --- a/Test/baseResults/hlsl.intrinsics.negative.vert.out +++ b/Test/baseResults/hlsl.intrinsics.negative.vert.out @@ -307,7 +307,7 @@ Shader version: 500 0:? 'inF2' (layout( location=2) in 4-component vector of float) 0:? 'inI0' (layout( location=3) in 4-component vector of int) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 155 diff --git a/Test/baseResults/hlsl.intrinsics.promote.down.frag.out b/Test/baseResults/hlsl.intrinsics.promote.down.frag.out index bff5bf5b..a3748c32 100644 --- a/Test/baseResults/hlsl.intrinsics.promote.down.frag.out +++ b/Test/baseResults/hlsl.intrinsics.promote.down.frag.out @@ -103,7 +103,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform int i, uniform uint u, uniform float f, uniform bool b, uniform 2-component vector of int i2, uniform 2-component vector of uint u2, uniform 2-component vector of float f2, uniform 2-component vector of bool b2}) 0:? '@entryPointOutput.color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 50 diff --git a/Test/baseResults/hlsl.intrinsics.promote.frag.out b/Test/baseResults/hlsl.intrinsics.promote.frag.out index e6df40a2..e66da7ef 100644 --- a/Test/baseResults/hlsl.intrinsics.promote.frag.out +++ b/Test/baseResults/hlsl.intrinsics.promote.frag.out @@ -887,7 +887,7 @@ gl_FragCoord origin is upper left 0:? 'g_tTex1df4' ( uniform texture1D) 0:? '@entryPointOutput.color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 322 diff --git a/Test/baseResults/hlsl.intrinsics.promote.outputs.frag.out b/Test/baseResults/hlsl.intrinsics.promote.outputs.frag.out index 9bbb8004..ff3e0cf3 100644 --- a/Test/baseResults/hlsl.intrinsics.promote.outputs.frag.out +++ b/Test/baseResults/hlsl.intrinsics.promote.outputs.frag.out @@ -203,7 +203,7 @@ gl_FragCoord origin is upper left 0:? 'g_tTex1df4' ( uniform texture1D) 0:? '@entryPointOutput.color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 80 diff --git a/Test/baseResults/hlsl.intrinsics.vert.out b/Test/baseResults/hlsl.intrinsics.vert.out index 82aa8b1d..eccf03d1 100644 --- a/Test/baseResults/hlsl.intrinsics.vert.out +++ b/Test/baseResults/hlsl.intrinsics.vert.out @@ -2778,7 +2778,7 @@ Shader version: 500 0:413 'inFM3x2' ( in 3X2 matrix of float) 0:? Linker Objects -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 1225 diff --git a/Test/baseResults/hlsl.isfinite.frag.out b/Test/baseResults/hlsl.isfinite.frag.out index 053634a9..46593def 100644 --- a/Test/baseResults/hlsl.isfinite.frag.out +++ b/Test/baseResults/hlsl.isfinite.frag.out @@ -171,7 +171,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform float f, uniform 2-component vector of float f2, uniform 3-component vector of float f3}) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 85 diff --git a/Test/baseResults/hlsl.layout.frag.out b/Test/baseResults/hlsl.layout.frag.out index 484d947b..7ceb5e7f 100755 --- a/Test/baseResults/hlsl.layout.frag.out +++ b/Test/baseResults/hlsl.layout.frag.out @@ -86,7 +86,7 @@ gl_FragCoord origin is upper left 0:? 10 (const int) 0:? 'anon@2' (layout( set=4 binding=7 row_major std430) readonly buffer block{layout( row_major std430 offset=16) buffer 4-component vector of float v1PostLayout}) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 44 diff --git a/Test/baseResults/hlsl.layoutOverride.vert.out b/Test/baseResults/hlsl.layoutOverride.vert.out index f6c634f1..e5cdcfe3 100755 --- a/Test/baseResults/hlsl.layoutOverride.vert.out +++ b/Test/baseResults/hlsl.layoutOverride.vert.out @@ -51,7 +51,7 @@ Shader version: 500 0:? 'samp' ( uniform sampler) 0:? '@entryPointOutput' ( out 4-component vector of float Position) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 32 diff --git a/Test/baseResults/hlsl.load.2dms.dx10.frag.out b/Test/baseResults/hlsl.load.2dms.dx10.frag.out index 3a6c9390..f7749a97 100644 --- a/Test/baseResults/hlsl.load.2dms.dx10.frag.out +++ b/Test/baseResults/hlsl.load.2dms.dx10.frag.out @@ -355,7 +355,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 130 diff --git a/Test/baseResults/hlsl.load.array.dx10.frag.out b/Test/baseResults/hlsl.load.array.dx10.frag.out index d15caa5a..e4202423 100644 --- a/Test/baseResults/hlsl.load.array.dx10.frag.out +++ b/Test/baseResults/hlsl.load.array.dx10.frag.out @@ -385,7 +385,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 159 diff --git a/Test/baseResults/hlsl.load.basic.dx10.frag.out b/Test/baseResults/hlsl.load.basic.dx10.frag.out index b5643325..4a760624 100644 --- a/Test/baseResults/hlsl.load.basic.dx10.frag.out +++ b/Test/baseResults/hlsl.load.basic.dx10.frag.out @@ -487,7 +487,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 179 diff --git a/Test/baseResults/hlsl.load.basic.dx10.vert.out b/Test/baseResults/hlsl.load.basic.dx10.vert.out index 4651fd95..a3beaf4d 100644 --- a/Test/baseResults/hlsl.load.basic.dx10.vert.out +++ b/Test/baseResults/hlsl.load.basic.dx10.vert.out @@ -451,7 +451,7 @@ Shader version: 500 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform int c1, uniform 2-component vector of int c2, uniform 3-component vector of int c3, uniform 4-component vector of int c4, uniform int o1, uniform 2-component vector of int o2, uniform 3-component vector of int o3, uniform 4-component vector of int o4}) 0:? '@entryPointOutput.Pos' ( out 4-component vector of float Position) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 171 diff --git a/Test/baseResults/hlsl.load.buffer.dx10.frag.out b/Test/baseResults/hlsl.load.buffer.dx10.frag.out index b9a4b52b..4cb5f954 100644 --- a/Test/baseResults/hlsl.load.buffer.dx10.frag.out +++ b/Test/baseResults/hlsl.load.buffer.dx10.frag.out @@ -163,7 +163,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 72 diff --git a/Test/baseResults/hlsl.load.buffer.float.dx10.frag.out b/Test/baseResults/hlsl.load.buffer.float.dx10.frag.out index bc8b3c11..309778a5 100644 --- a/Test/baseResults/hlsl.load.buffer.float.dx10.frag.out +++ b/Test/baseResults/hlsl.load.buffer.float.dx10.frag.out @@ -169,7 +169,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 75 diff --git a/Test/baseResults/hlsl.load.offset.dx10.frag.out b/Test/baseResults/hlsl.load.offset.dx10.frag.out index 4198a06b..23e704c5 100644 --- a/Test/baseResults/hlsl.load.offset.dx10.frag.out +++ b/Test/baseResults/hlsl.load.offset.dx10.frag.out @@ -559,7 +559,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 201 diff --git a/Test/baseResults/hlsl.load.offsetarray.dx10.frag.out b/Test/baseResults/hlsl.load.offsetarray.dx10.frag.out index e1c57d51..1c777979 100644 --- a/Test/baseResults/hlsl.load.offsetarray.dx10.frag.out +++ b/Test/baseResults/hlsl.load.offsetarray.dx10.frag.out @@ -433,7 +433,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 174 diff --git a/Test/baseResults/hlsl.load.rwbuffer.dx10.frag.out b/Test/baseResults/hlsl.load.rwbuffer.dx10.frag.out index a6025def..dfaaabae 100644 --- a/Test/baseResults/hlsl.load.rwbuffer.dx10.frag.out +++ b/Test/baseResults/hlsl.load.rwbuffer.dx10.frag.out @@ -109,7 +109,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform int c1, uniform 2-component vector of int c2, uniform 3-component vector of int c3, uniform 4-component vector of int c4, uniform int o1, uniform 2-component vector of int o2, uniform 3-component vector of int o3, uniform 4-component vector of int o4}) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 57 diff --git a/Test/baseResults/hlsl.load.rwtexture.array.dx10.frag.out b/Test/baseResults/hlsl.load.rwtexture.array.dx10.frag.out index 7751173a..9bd7e957 100644 --- a/Test/baseResults/hlsl.load.rwtexture.array.dx10.frag.out +++ b/Test/baseResults/hlsl.load.rwtexture.array.dx10.frag.out @@ -205,7 +205,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 119 diff --git a/Test/baseResults/hlsl.load.rwtexture.dx10.frag.out b/Test/baseResults/hlsl.load.rwtexture.dx10.frag.out index 905af7df..045683e0 100644 --- a/Test/baseResults/hlsl.load.rwtexture.dx10.frag.out +++ b/Test/baseResults/hlsl.load.rwtexture.dx10.frag.out @@ -241,7 +241,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 132 diff --git a/Test/baseResults/hlsl.logical.binary.frag.out b/Test/baseResults/hlsl.logical.binary.frag.out index 932d8b73..8425f45e 100644 --- a/Test/baseResults/hlsl.logical.binary.frag.out +++ b/Test/baseResults/hlsl.logical.binary.frag.out @@ -127,7 +127,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform int ival, uniform 4-component vector of int ival4, uniform float fval, uniform 4-component vector of float fval4}) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 57 diff --git a/Test/baseResults/hlsl.logical.binary.vec.frag.out b/Test/baseResults/hlsl.logical.binary.vec.frag.out index 175af1e5..8b63fe86 100644 --- a/Test/baseResults/hlsl.logical.binary.vec.frag.out +++ b/Test/baseResults/hlsl.logical.binary.vec.frag.out @@ -253,7 +253,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform 4-component vector of bool b4a, uniform 4-component vector of bool b4b, uniform bool b1a, uniform bool b1b}) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 115 diff --git a/Test/baseResults/hlsl.logical.unary.frag.out b/Test/baseResults/hlsl.logical.unary.frag.out index 43c4f988..ab62b5da 100644 --- a/Test/baseResults/hlsl.logical.unary.frag.out +++ b/Test/baseResults/hlsl.logical.unary.frag.out @@ -183,7 +183,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform int ival, uniform 4-component vector of int ival4, uniform float fval, uniform 4-component vector of float fval4}) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 84 diff --git a/Test/baseResults/hlsl.logicalConvert.frag.out b/Test/baseResults/hlsl.logicalConvert.frag.out index 7effb89f..39c2b468 100755 --- a/Test/baseResults/hlsl.logicalConvert.frag.out +++ b/Test/baseResults/hlsl.logicalConvert.frag.out @@ -253,7 +253,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 50 diff --git a/Test/baseResults/hlsl.loopattr.frag.out b/Test/baseResults/hlsl.loopattr.frag.out index ce697827..f7f64514 100644 --- a/Test/baseResults/hlsl.loopattr.frag.out +++ b/Test/baseResults/hlsl.loopattr.frag.out @@ -135,7 +135,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 54 diff --git a/Test/baseResults/hlsl.matNx1.frag.out b/Test/baseResults/hlsl.matNx1.frag.out index 9fdf51df..c4290340 100644 --- a/Test/baseResults/hlsl.matNx1.frag.out +++ b/Test/baseResults/hlsl.matNx1.frag.out @@ -151,7 +151,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput.color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 77 diff --git a/Test/baseResults/hlsl.matType.bool.frag.out b/Test/baseResults/hlsl.matType.bool.frag.out index 0e03b763..0844ae31 100644 --- a/Test/baseResults/hlsl.matType.bool.frag.out +++ b/Test/baseResults/hlsl.matType.bool.frag.out @@ -231,7 +231,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput.color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 130 diff --git a/Test/baseResults/hlsl.matType.frag.out b/Test/baseResults/hlsl.matType.frag.out index d6a06d13..062b16af 100755 --- a/Test/baseResults/hlsl.matType.frag.out +++ b/Test/baseResults/hlsl.matType.frag.out @@ -30,7 +30,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform 1-component vector of float f1, uniform 1X1 matrix of float fmat11, uniform 4X1 matrix of float fmat41, uniform 1X2 matrix of float fmat12, uniform 2X3 matrix of double dmat23, uniform 4X4 matrix of int int44}) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 30 diff --git a/Test/baseResults/hlsl.matType.int.frag.out b/Test/baseResults/hlsl.matType.int.frag.out index 1d369ba0..7275ef01 100644 --- a/Test/baseResults/hlsl.matType.int.frag.out +++ b/Test/baseResults/hlsl.matType.int.frag.out @@ -397,7 +397,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput.color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 232 diff --git a/Test/baseResults/hlsl.matpack-1.frag.out b/Test/baseResults/hlsl.matpack-1.frag.out index 279ed1dd..5e5ef6ba 100644 --- a/Test/baseResults/hlsl.matpack-1.frag.out +++ b/Test/baseResults/hlsl.matpack-1.frag.out @@ -99,7 +99,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{layout( row_major std140) uniform structure{layout( row_major) temp 4X4 matrix of float mat1, layout( column_major) temp 4X4 matrix of float mat2, temp 4-component vector of float vec1, temp float foo} g_MyBuffer1, layout( row_major std140) uniform structure{layout( column_major) temp 4X4 matrix of float mat1, temp 4-component vector of float vec1} g_MyBuffer2, layout( row_major std140) uniform 4X4 matrix of float mat1a}) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 39 diff --git a/Test/baseResults/hlsl.matpack-pragma.frag.out b/Test/baseResults/hlsl.matpack-pragma.frag.out index afe6e2ca..f5fd07d1 100644 --- a/Test/baseResults/hlsl.matpack-pragma.frag.out +++ b/Test/baseResults/hlsl.matpack-pragma.frag.out @@ -169,7 +169,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{layout( row_major std140) uniform structure{layout( row_major) temp 4X4 matrix of float mat1, layout( column_major) temp 4X4 matrix of float mat2, layout( column_major) temp 4X4 matrix of float mat3} g_MyBuffer1, layout( row_major std140) uniform structure{layout( row_major) temp 4X4 matrix of float mat1, layout( column_major) temp 4X4 matrix of float mat2, layout( row_major) temp 4X4 matrix of float mat3} g_MyBuffer2, layout( row_major std140) uniform 4X4 matrix of float mat1a}) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 44 diff --git a/Test/baseResults/hlsl.matrixSwizzle.vert.out b/Test/baseResults/hlsl.matrixSwizzle.vert.out index efa21ba7..9bc00bb0 100755 --- a/Test/baseResults/hlsl.matrixSwizzle.vert.out +++ b/Test/baseResults/hlsl.matrixSwizzle.vert.out @@ -676,7 +676,7 @@ Shader version: 500 0:? 'inf' (layout( location=0) in float) Missing functionality: matrix swizzle -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 118 diff --git a/Test/baseResults/hlsl.matrixindex.frag.out b/Test/baseResults/hlsl.matrixindex.frag.out index f81357a5..9a3f3f07 100644 --- a/Test/baseResults/hlsl.matrixindex.frag.out +++ b/Test/baseResults/hlsl.matrixindex.frag.out @@ -271,7 +271,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform int idx, uniform 3X2 matrix of float um}) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 83 diff --git a/Test/baseResults/hlsl.max.frag.out b/Test/baseResults/hlsl.max.frag.out index 7c01f030..acade7ca 100755 --- a/Test/baseResults/hlsl.max.frag.out +++ b/Test/baseResults/hlsl.max.frag.out @@ -65,7 +65,7 @@ gl_FragCoord origin is upper left 0:? 'input1' (layout( location=0) in 4-component vector of float) 0:? 'input2' (layout( location=1) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 33 diff --git a/Test/baseResults/hlsl.memberFunCall.frag.out b/Test/baseResults/hlsl.memberFunCall.frag.out index dd637e0c..cd3eeb9d 100755 --- a/Test/baseResults/hlsl.memberFunCall.frag.out +++ b/Test/baseResults/hlsl.memberFunCall.frag.out @@ -151,7 +151,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 73 diff --git a/Test/baseResults/hlsl.mintypes.frag.out b/Test/baseResults/hlsl.mintypes.frag.out index 6bd61e5d..4554de5c 100644 --- a/Test/baseResults/hlsl.mintypes.frag.out +++ b/Test/baseResults/hlsl.mintypes.frag.out @@ -97,7 +97,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform mediump float b1a, uniform mediump float b1b}) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 70 diff --git a/Test/baseResults/hlsl.mip.operator.frag.out b/Test/baseResults/hlsl.mip.operator.frag.out index 460c4c72..11c8f53e 100644 --- a/Test/baseResults/hlsl.mip.operator.frag.out +++ b/Test/baseResults/hlsl.mip.operator.frag.out @@ -127,7 +127,7 @@ gl_FragCoord origin is upper left 0:? 'g_tTex2df4' ( uniform texture2D) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 61 diff --git a/Test/baseResults/hlsl.mul-truncate.frag.out b/Test/baseResults/hlsl.mul-truncate.frag.out index 340dc327..b27af502 100644 --- a/Test/baseResults/hlsl.mul-truncate.frag.out +++ b/Test/baseResults/hlsl.mul-truncate.frag.out @@ -382,7 +382,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{layout( row_major std140) uniform 4X4 matrix of float m44, layout( row_major std140) uniform 4X3 matrix of float m43, layout( row_major std140) uniform 3X4 matrix of float m34, layout( row_major std140) uniform 3X3 matrix of float m33, layout( row_major std140) uniform 2X4 matrix of float m24, layout( row_major std140) uniform 4X2 matrix of float m42, layout( row_major std140) uniform 4-component vector of float v4, layout( row_major std140) uniform 3-component vector of float v3, layout( row_major std140) uniform 2-component vector of float v2}) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 231 diff --git a/Test/baseResults/hlsl.multiDescriptorSet.frag.out b/Test/baseResults/hlsl.multiDescriptorSet.frag.out index d95fbb56..5d085434 100644 --- a/Test/baseResults/hlsl.multiDescriptorSet.frag.out +++ b/Test/baseResults/hlsl.multiDescriptorSet.frag.out @@ -1,5 +1,5 @@ hlsl.multiDescriptorSet.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 92 diff --git a/Test/baseResults/hlsl.multiEntry.vert.out b/Test/baseResults/hlsl.multiEntry.vert.out index 8eeec31f..5c56f33d 100755 --- a/Test/baseResults/hlsl.multiEntry.vert.out +++ b/Test/baseResults/hlsl.multiEntry.vert.out @@ -69,7 +69,7 @@ Shader version: 500 0:? '@entryPointOutput' ( out 4-component vector of float Position) 0:? 'Index' ( in uint VertexIndex) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 41 diff --git a/Test/baseResults/hlsl.multiReturn.frag.out b/Test/baseResults/hlsl.multiReturn.frag.out index ad997143..dc978cc0 100755 --- a/Test/baseResults/hlsl.multiReturn.frag.out +++ b/Test/baseResults/hlsl.multiReturn.frag.out @@ -47,7 +47,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? 'anon@0' (layout( row_major std140) uniform block{layout( row_major std140) uniform structure{ temp float f, temp 3-component vector of float v, temp 3X3 matrix of float m} s}) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 42 diff --git a/Test/baseResults/hlsl.namespace.frag.out b/Test/baseResults/hlsl.namespace.frag.out index 57f53ee6..b4b8d6cc 100755 --- a/Test/baseResults/hlsl.namespace.frag.out +++ b/Test/baseResults/hlsl.namespace.frag.out @@ -101,7 +101,7 @@ gl_FragCoord origin is upper left 0:? 'N2::gf' ( global float) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 54 diff --git a/Test/baseResults/hlsl.nonint-index.frag.out b/Test/baseResults/hlsl.nonint-index.frag.out index 1073706c..644733b4 100644 --- a/Test/baseResults/hlsl.nonint-index.frag.out +++ b/Test/baseResults/hlsl.nonint-index.frag.out @@ -87,7 +87,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out float) 0:? 'input' (layout( location=0) in float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 39 diff --git a/Test/baseResults/hlsl.nonstaticMemberFunction.frag.out b/Test/baseResults/hlsl.nonstaticMemberFunction.frag.out index 60928c5f..e8a80082 100755 --- a/Test/baseResults/hlsl.nonstaticMemberFunction.frag.out +++ b/Test/baseResults/hlsl.nonstaticMemberFunction.frag.out @@ -267,7 +267,7 @@ gl_FragCoord origin is upper left 0:? 'j' ( global 2-component vector of float) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 111 diff --git a/Test/baseResults/hlsl.numericsuffixes.frag.out b/Test/baseResults/hlsl.numericsuffixes.frag.out index 1967d3f3..a75a7e18 100644 --- a/Test/baseResults/hlsl.numericsuffixes.frag.out +++ b/Test/baseResults/hlsl.numericsuffixes.frag.out @@ -191,7 +191,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput.color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 54 diff --git a/Test/baseResults/hlsl.numthreads.comp.out b/Test/baseResults/hlsl.numthreads.comp.out index 91014147..c6ec011d 100644 --- a/Test/baseResults/hlsl.numthreads.comp.out +++ b/Test/baseResults/hlsl.numthreads.comp.out @@ -43,7 +43,7 @@ local_size = (4, 4, 2) 0:? Linker Objects 0:? 'tid' ( in 3-component vector of uint GlobalInvocationID) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 23 diff --git a/Test/baseResults/hlsl.opaque-type-bug.frag.out b/Test/baseResults/hlsl.opaque-type-bug.frag.out index 2aa0b953..42a0494d 100644 --- a/Test/baseResults/hlsl.opaque-type-bug.frag.out +++ b/Test/baseResults/hlsl.opaque-type-bug.frag.out @@ -57,7 +57,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? 'MyTexture' (layout( binding=0) uniform texture2D) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 27 diff --git a/Test/baseResults/hlsl.overload.frag.out b/Test/baseResults/hlsl.overload.frag.out index 88ae2b1b..079166cc 100755 --- a/Test/baseResults/hlsl.overload.frag.out +++ b/Test/baseResults/hlsl.overload.frag.out @@ -733,7 +733,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'input' (layout( location=0) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 520 diff --git a/Test/baseResults/hlsl.params.default.frag.out b/Test/baseResults/hlsl.params.default.frag.out index 5b227a0b..bc2f57d2 100644 --- a/Test/baseResults/hlsl.params.default.frag.out +++ b/Test/baseResults/hlsl.params.default.frag.out @@ -375,7 +375,7 @@ gl_FragCoord origin is upper left 0:? -42 (const int) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of int) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 178 diff --git a/Test/baseResults/hlsl.partialFlattenLocal.vert.out b/Test/baseResults/hlsl.partialFlattenLocal.vert.out index 29f69ede..5acae6f8 100755 --- a/Test/baseResults/hlsl.partialFlattenLocal.vert.out +++ b/Test/baseResults/hlsl.partialFlattenLocal.vert.out @@ -236,7 +236,7 @@ Shader version: 500 0:? '@entryPointOutput' ( out 4-component vector of float Position) 0:? 'pos' (layout( location=0) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 90 diff --git a/Test/baseResults/hlsl.partialFlattenMixed.vert.out b/Test/baseResults/hlsl.partialFlattenMixed.vert.out index 8c175da4..e14987c2 100755 --- a/Test/baseResults/hlsl.partialFlattenMixed.vert.out +++ b/Test/baseResults/hlsl.partialFlattenMixed.vert.out @@ -90,7 +90,7 @@ Shader version: 500 0:? '@entryPointOutput' ( out 4-component vector of float Position) 0:? 'pos' (layout( location=0) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 43 diff --git a/Test/baseResults/hlsl.partialInit.frag.out b/Test/baseResults/hlsl.partialInit.frag.out index 1ea97b55..3b449fe5 100755 --- a/Test/baseResults/hlsl.partialInit.frag.out +++ b/Test/baseResults/hlsl.partialInit.frag.out @@ -398,7 +398,7 @@ gl_FragCoord origin is upper left 0:? 'ci' ( const int) 0:? 0 (const int) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 104 diff --git a/Test/baseResults/hlsl.pp.line.frag.out b/Test/baseResults/hlsl.pp.line.frag.out index bc8999dc..01caf968 100644 --- a/Test/baseResults/hlsl.pp.line.frag.out +++ b/Test/baseResults/hlsl.pp.line.frag.out @@ -117,7 +117,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 42 diff --git a/Test/baseResults/hlsl.pp.vert.out b/Test/baseResults/hlsl.pp.vert.out index b20f38ea..0aee624f 100755 --- a/Test/baseResults/hlsl.pp.vert.out +++ b/Test/baseResults/hlsl.pp.vert.out @@ -25,7 +25,7 @@ Shader version: 500 0:? Linker Objects 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform int goodGlobal1, uniform int goodGlobal2}) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 13 diff --git a/Test/baseResults/hlsl.precedence.frag.out b/Test/baseResults/hlsl.precedence.frag.out index 95ccc926..f227e8b3 100755 --- a/Test/baseResults/hlsl.precedence.frag.out +++ b/Test/baseResults/hlsl.precedence.frag.out @@ -147,7 +147,7 @@ gl_FragCoord origin is upper left 0:? 'a3' (layout( location=2) in 4-component vector of float) 0:? 'a4' (layout( location=3) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 65 diff --git a/Test/baseResults/hlsl.precedence2.frag.out b/Test/baseResults/hlsl.precedence2.frag.out index b4111703..7a044085 100755 --- a/Test/baseResults/hlsl.precedence2.frag.out +++ b/Test/baseResults/hlsl.precedence2.frag.out @@ -113,7 +113,7 @@ gl_FragCoord origin is upper left 0:? 'a3' (layout( location=2) flat in int) 0:? 'a4' (layout( location=3) flat in int) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 56 diff --git a/Test/baseResults/hlsl.precise.frag.out b/Test/baseResults/hlsl.precise.frag.out index c4a50bca..956fc0f8 100644 --- a/Test/baseResults/hlsl.precise.frag.out +++ b/Test/baseResults/hlsl.precise.frag.out @@ -75,7 +75,7 @@ gl_FragCoord origin is upper left 0:? 'precisefloat' ( noContraction global float) 0:? '@entryPointOutput.color' (layout( location=0) noContraction out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 37 diff --git a/Test/baseResults/hlsl.preprocessor.frag.out b/Test/baseResults/hlsl.preprocessor.frag.out index 83881c99..b59141f8 100644 --- a/Test/baseResults/hlsl.preprocessor.frag.out +++ b/Test/baseResults/hlsl.preprocessor.frag.out @@ -93,7 +93,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'input' (layout( location=0) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 40 diff --git a/Test/baseResults/hlsl.promote.atomic.frag.out b/Test/baseResults/hlsl.promote.atomic.frag.out index e832fc71..2be02265 100644 --- a/Test/baseResults/hlsl.promote.atomic.frag.out +++ b/Test/baseResults/hlsl.promote.atomic.frag.out @@ -63,7 +63,7 @@ gl_FragCoord origin is upper left 0:? 's_uintbuff' (layout( r32ui) uniform uimageBuffer) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 36 diff --git a/Test/baseResults/hlsl.promote.binary.frag.out b/Test/baseResults/hlsl.promote.binary.frag.out index 637c3e54..81ac024b 100644 --- a/Test/baseResults/hlsl.promote.binary.frag.out +++ b/Test/baseResults/hlsl.promote.binary.frag.out @@ -171,7 +171,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform bool bval, uniform 4-component vector of bool bval4, uniform int ival, uniform 4-component vector of int ival4, uniform float fval, uniform 4-component vector of float fval4}) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 83 diff --git a/Test/baseResults/hlsl.promote.vec1.frag.out b/Test/baseResults/hlsl.promote.vec1.frag.out index d83bf690..c971ff30 100644 --- a/Test/baseResults/hlsl.promote.vec1.frag.out +++ b/Test/baseResults/hlsl.promote.vec1.frag.out @@ -79,7 +79,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 31 diff --git a/Test/baseResults/hlsl.promotions.frag.out b/Test/baseResults/hlsl.promotions.frag.out index ad4d1ab1..5b529e91 100644 --- a/Test/baseResults/hlsl.promotions.frag.out +++ b/Test/baseResults/hlsl.promotions.frag.out @@ -1581,7 +1581,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform 3-component vector of int i3, uniform 3-component vector of bool b3, uniform 3-component vector of float f3, uniform 3-component vector of uint u3, uniform 3-component vector of double d3, uniform int is, uniform bool bs, uniform float fs, uniform uint us, uniform double ds}) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 596 diff --git a/Test/baseResults/hlsl.rw.atomics.frag.out b/Test/baseResults/hlsl.rw.atomics.frag.out index 5b01f9cf..1311d237 100644 --- a/Test/baseResults/hlsl.rw.atomics.frag.out +++ b/Test/baseResults/hlsl.rw.atomics.frag.out @@ -3945,7 +3945,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform uint u1, uniform 2-component vector of uint u2, uniform 3-component vector of uint u3, uniform uint u1b, uniform uint u1c, uniform int i1, uniform 2-component vector of int i2, uniform 3-component vector of int i3, uniform int i1b, uniform int i1c}) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 1147 diff --git a/Test/baseResults/hlsl.rw.bracket.frag.out b/Test/baseResults/hlsl.rw.bracket.frag.out index c1b6e8bd..e4640a51 100644 --- a/Test/baseResults/hlsl.rw.bracket.frag.out +++ b/Test/baseResults/hlsl.rw.bracket.frag.out @@ -1743,7 +1743,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform int c1, uniform 2-component vector of int c2, uniform 3-component vector of int c3, uniform 4-component vector of int c4, uniform int o1, uniform 2-component vector of int o2, uniform 3-component vector of int o3, uniform 4-component vector of int o4, uniform 4-component vector of float uf4, uniform 4-component vector of int ui4, uniform 4-component vector of uint uu4}) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 607 diff --git a/Test/baseResults/hlsl.rw.register.frag.out b/Test/baseResults/hlsl.rw.register.frag.out index 5f10dd85..f563c32a 100644 --- a/Test/baseResults/hlsl.rw.register.frag.out +++ b/Test/baseResults/hlsl.rw.register.frag.out @@ -97,7 +97,7 @@ gl_FragCoord origin is upper left 0:? 'g_tBuf1du1' (layout( binding=3 r32ui) uniform uimageBuffer) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 42 diff --git a/Test/baseResults/hlsl.rw.scalar.bracket.frag.out b/Test/baseResults/hlsl.rw.scalar.bracket.frag.out index 367bd97d..8e7ab9de 100644 --- a/Test/baseResults/hlsl.rw.scalar.bracket.frag.out +++ b/Test/baseResults/hlsl.rw.scalar.bracket.frag.out @@ -1689,7 +1689,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform int c1, uniform 2-component vector of int c2, uniform 3-component vector of int c3, uniform 4-component vector of int c4, uniform int o1, uniform 2-component vector of int o2, uniform 3-component vector of int o3, uniform 4-component vector of int o4, uniform float uf1, uniform int ui1, uniform uint uu1}) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 571 diff --git a/Test/baseResults/hlsl.rw.swizzle.frag.out b/Test/baseResults/hlsl.rw.swizzle.frag.out index aa380858..3f6b163a 100644 --- a/Test/baseResults/hlsl.rw.swizzle.frag.out +++ b/Test/baseResults/hlsl.rw.swizzle.frag.out @@ -201,7 +201,7 @@ gl_FragCoord origin is upper left 0:? 'buf' (layout( rgba32f) uniform imageBuffer) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 63 diff --git a/Test/baseResults/hlsl.rw.vec2.bracket.frag.out b/Test/baseResults/hlsl.rw.vec2.bracket.frag.out index 357c9140..6100899d 100644 --- a/Test/baseResults/hlsl.rw.vec2.bracket.frag.out +++ b/Test/baseResults/hlsl.rw.vec2.bracket.frag.out @@ -1707,7 +1707,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform int c1, uniform 2-component vector of int c2, uniform 3-component vector of int c3, uniform 4-component vector of int c4, uniform int o1, uniform 2-component vector of int o2, uniform 3-component vector of int o3, uniform 4-component vector of int o4, uniform 2-component vector of float uf2, uniform 2-component vector of int ui2, uniform 2-component vector of uint uu2}) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 605 diff --git a/Test/baseResults/hlsl.sample.array.dx10.frag.out b/Test/baseResults/hlsl.sample.array.dx10.frag.out index fcbe66b2..68f5e3ca 100644 --- a/Test/baseResults/hlsl.sample.array.dx10.frag.out +++ b/Test/baseResults/hlsl.sample.array.dx10.frag.out @@ -319,7 +319,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 146 diff --git a/Test/baseResults/hlsl.sample.basic.dx10.frag.out b/Test/baseResults/hlsl.sample.basic.dx10.frag.out index 1e5e5276..88a35b4d 100644 --- a/Test/baseResults/hlsl.sample.basic.dx10.frag.out +++ b/Test/baseResults/hlsl.sample.basic.dx10.frag.out @@ -547,7 +547,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 198 diff --git a/Test/baseResults/hlsl.sample.offset.dx10.frag.out b/Test/baseResults/hlsl.sample.offset.dx10.frag.out index ae4ad6af..de7128b1 100644 --- a/Test/baseResults/hlsl.sample.offset.dx10.frag.out +++ b/Test/baseResults/hlsl.sample.offset.dx10.frag.out @@ -361,7 +361,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 161 diff --git a/Test/baseResults/hlsl.sample.offsetarray.dx10.frag.out b/Test/baseResults/hlsl.sample.offsetarray.dx10.frag.out index a33903ac..8956c155 100644 --- a/Test/baseResults/hlsl.sample.offsetarray.dx10.frag.out +++ b/Test/baseResults/hlsl.sample.offsetarray.dx10.frag.out @@ -271,7 +271,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 118 diff --git a/Test/baseResults/hlsl.sample.sub-vec4.dx10.frag.out b/Test/baseResults/hlsl.sample.sub-vec4.dx10.frag.out index ef249396..55d87a37 100644 --- a/Test/baseResults/hlsl.sample.sub-vec4.dx10.frag.out +++ b/Test/baseResults/hlsl.sample.sub-vec4.dx10.frag.out @@ -153,7 +153,7 @@ gl_FragCoord origin is upper left 0:? 'g_tTex1df4' ( uniform texture1D) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 72 diff --git a/Test/baseResults/hlsl.samplebias.array.dx10.frag.out b/Test/baseResults/hlsl.samplebias.array.dx10.frag.out index e25507d3..a3acb1ec 100644 --- a/Test/baseResults/hlsl.samplebias.array.dx10.frag.out +++ b/Test/baseResults/hlsl.samplebias.array.dx10.frag.out @@ -355,7 +355,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 146 diff --git a/Test/baseResults/hlsl.samplebias.basic.dx10.frag.out b/Test/baseResults/hlsl.samplebias.basic.dx10.frag.out index be32c9d9..615c6da0 100644 --- a/Test/baseResults/hlsl.samplebias.basic.dx10.frag.out +++ b/Test/baseResults/hlsl.samplebias.basic.dx10.frag.out @@ -421,7 +421,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 170 diff --git a/Test/baseResults/hlsl.samplebias.offset.dx10.frag.out b/Test/baseResults/hlsl.samplebias.offset.dx10.frag.out index b8459de6..000c84a8 100644 --- a/Test/baseResults/hlsl.samplebias.offset.dx10.frag.out +++ b/Test/baseResults/hlsl.samplebias.offset.dx10.frag.out @@ -397,7 +397,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 161 diff --git a/Test/baseResults/hlsl.samplebias.offsetarray.dx10.frag.out b/Test/baseResults/hlsl.samplebias.offsetarray.dx10.frag.out index f83009ab..67cc41fd 100644 --- a/Test/baseResults/hlsl.samplebias.offsetarray.dx10.frag.out +++ b/Test/baseResults/hlsl.samplebias.offsetarray.dx10.frag.out @@ -295,7 +295,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 118 diff --git a/Test/baseResults/hlsl.samplecmp.array.dx10.frag.out b/Test/baseResults/hlsl.samplecmp.array.dx10.frag.out index 9125304a..33df30c3 100644 --- a/Test/baseResults/hlsl.samplecmp.array.dx10.frag.out +++ b/Test/baseResults/hlsl.samplecmp.array.dx10.frag.out @@ -395,7 +395,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 209 diff --git a/Test/baseResults/hlsl.samplecmp.basic.dx10.frag.out b/Test/baseResults/hlsl.samplecmp.basic.dx10.frag.out index 50dafee6..0daeb652 100644 --- a/Test/baseResults/hlsl.samplecmp.basic.dx10.frag.out +++ b/Test/baseResults/hlsl.samplecmp.basic.dx10.frag.out @@ -377,7 +377,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 198 diff --git a/Test/baseResults/hlsl.samplecmp.dualmode.frag.out b/Test/baseResults/hlsl.samplecmp.dualmode.frag.out index 206eb5b8..d54bc511 100644 --- a/Test/baseResults/hlsl.samplecmp.dualmode.frag.out +++ b/Test/baseResults/hlsl.samplecmp.dualmode.frag.out @@ -84,7 +84,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'g_tTex' (layout( binding=3) uniform texture1D) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 43 diff --git a/Test/baseResults/hlsl.samplecmp.offset.dx10.frag.out b/Test/baseResults/hlsl.samplecmp.offset.dx10.frag.out index eed2f51a..ed20ddc2 100644 --- a/Test/baseResults/hlsl.samplecmp.offset.dx10.frag.out +++ b/Test/baseResults/hlsl.samplecmp.offset.dx10.frag.out @@ -323,7 +323,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 167 diff --git a/Test/baseResults/hlsl.samplecmp.offsetarray.dx10.frag.out b/Test/baseResults/hlsl.samplecmp.offsetarray.dx10.frag.out index d7458c1f..812ef654 100644 --- a/Test/baseResults/hlsl.samplecmp.offsetarray.dx10.frag.out +++ b/Test/baseResults/hlsl.samplecmp.offsetarray.dx10.frag.out @@ -335,7 +335,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 178 diff --git a/Test/baseResults/hlsl.samplecmplevelzero.array.dx10.frag.out b/Test/baseResults/hlsl.samplecmplevelzero.array.dx10.frag.out index ecab5058..b5a4d711 100644 --- a/Test/baseResults/hlsl.samplecmplevelzero.array.dx10.frag.out +++ b/Test/baseResults/hlsl.samplecmplevelzero.array.dx10.frag.out @@ -431,7 +431,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 210 diff --git a/Test/baseResults/hlsl.samplecmplevelzero.basic.dx10.frag.out b/Test/baseResults/hlsl.samplecmplevelzero.basic.dx10.frag.out index e4422332..fca44748 100644 --- a/Test/baseResults/hlsl.samplecmplevelzero.basic.dx10.frag.out +++ b/Test/baseResults/hlsl.samplecmplevelzero.basic.dx10.frag.out @@ -413,7 +413,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 199 diff --git a/Test/baseResults/hlsl.samplecmplevelzero.offset.dx10.frag.out b/Test/baseResults/hlsl.samplecmplevelzero.offset.dx10.frag.out index 96b94fcb..83b48cf4 100644 --- a/Test/baseResults/hlsl.samplecmplevelzero.offset.dx10.frag.out +++ b/Test/baseResults/hlsl.samplecmplevelzero.offset.dx10.frag.out @@ -347,7 +347,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 168 diff --git a/Test/baseResults/hlsl.samplecmplevelzero.offsetarray.dx10.frag.out b/Test/baseResults/hlsl.samplecmplevelzero.offsetarray.dx10.frag.out index 3be329ad..62fb50a9 100644 --- a/Test/baseResults/hlsl.samplecmplevelzero.offsetarray.dx10.frag.out +++ b/Test/baseResults/hlsl.samplecmplevelzero.offsetarray.dx10.frag.out @@ -359,7 +359,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 179 diff --git a/Test/baseResults/hlsl.samplegrad.array.dx10.frag.out b/Test/baseResults/hlsl.samplegrad.array.dx10.frag.out index a42791ec..ec78a13c 100644 --- a/Test/baseResults/hlsl.samplegrad.array.dx10.frag.out +++ b/Test/baseResults/hlsl.samplegrad.array.dx10.frag.out @@ -427,7 +427,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 140 diff --git a/Test/baseResults/hlsl.samplegrad.basic.dx10.frag.out b/Test/baseResults/hlsl.samplegrad.basic.dx10.frag.out index 0635bbc5..1d1ab509 100644 --- a/Test/baseResults/hlsl.samplegrad.basic.dx10.frag.out +++ b/Test/baseResults/hlsl.samplegrad.basic.dx10.frag.out @@ -529,7 +529,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 175 diff --git a/Test/baseResults/hlsl.samplegrad.basic.dx10.vert.out b/Test/baseResults/hlsl.samplegrad.basic.dx10.vert.out index 59efb541..feffb4a2 100644 --- a/Test/baseResults/hlsl.samplegrad.basic.dx10.vert.out +++ b/Test/baseResults/hlsl.samplegrad.basic.dx10.vert.out @@ -493,7 +493,7 @@ Shader version: 500 0:? 'g_tTexcdu4' ( uniform utextureCube) 0:? '@entryPointOutput.Pos' ( out 4-component vector of float Position) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 166 diff --git a/Test/baseResults/hlsl.samplegrad.offset.dx10.frag.out b/Test/baseResults/hlsl.samplegrad.offset.dx10.frag.out index ed6df1a5..5ee5aa13 100644 --- a/Test/baseResults/hlsl.samplegrad.offset.dx10.frag.out +++ b/Test/baseResults/hlsl.samplegrad.offset.dx10.frag.out @@ -469,7 +469,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 166 diff --git a/Test/baseResults/hlsl.samplegrad.offsetarray.dx10.frag.out b/Test/baseResults/hlsl.samplegrad.offsetarray.dx10.frag.out index 2b10ac18..167c247e 100644 --- a/Test/baseResults/hlsl.samplegrad.offsetarray.dx10.frag.out +++ b/Test/baseResults/hlsl.samplegrad.offsetarray.dx10.frag.out @@ -337,7 +337,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 120 diff --git a/Test/baseResults/hlsl.samplelevel.array.dx10.frag.out b/Test/baseResults/hlsl.samplelevel.array.dx10.frag.out index 4188d8f2..8caeabfd 100644 --- a/Test/baseResults/hlsl.samplelevel.array.dx10.frag.out +++ b/Test/baseResults/hlsl.samplelevel.array.dx10.frag.out @@ -355,7 +355,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 147 diff --git a/Test/baseResults/hlsl.samplelevel.basic.dx10.frag.out b/Test/baseResults/hlsl.samplelevel.basic.dx10.frag.out index a0b7bd1b..1e66d6dd 100644 --- a/Test/baseResults/hlsl.samplelevel.basic.dx10.frag.out +++ b/Test/baseResults/hlsl.samplelevel.basic.dx10.frag.out @@ -423,7 +423,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 172 diff --git a/Test/baseResults/hlsl.samplelevel.basic.dx10.vert.out b/Test/baseResults/hlsl.samplelevel.basic.dx10.vert.out index 788d4d8c..c202784f 100644 --- a/Test/baseResults/hlsl.samplelevel.basic.dx10.vert.out +++ b/Test/baseResults/hlsl.samplelevel.basic.dx10.vert.out @@ -385,7 +385,7 @@ Shader version: 500 0:? 'g_tTexcdu4' ( uniform utextureCube) 0:? '@entryPointOutput.Pos' ( out 4-component vector of float Position) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 162 diff --git a/Test/baseResults/hlsl.samplelevel.offset.dx10.frag.out b/Test/baseResults/hlsl.samplelevel.offset.dx10.frag.out index 826a2deb..dcbe7bc5 100644 --- a/Test/baseResults/hlsl.samplelevel.offset.dx10.frag.out +++ b/Test/baseResults/hlsl.samplelevel.offset.dx10.frag.out @@ -397,7 +397,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 162 diff --git a/Test/baseResults/hlsl.samplelevel.offsetarray.dx10.frag.out b/Test/baseResults/hlsl.samplelevel.offsetarray.dx10.frag.out index 5fd4aaa5..a7ec28a1 100644 --- a/Test/baseResults/hlsl.samplelevel.offsetarray.dx10.frag.out +++ b/Test/baseResults/hlsl.samplelevel.offsetarray.dx10.frag.out @@ -295,7 +295,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput.Depth' ( out float FragDepth) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 119 diff --git a/Test/baseResults/hlsl.scalar-length.frag.out b/Test/baseResults/hlsl.scalar-length.frag.out index 047e8d2e..5f121c65 100644 --- a/Test/baseResults/hlsl.scalar-length.frag.out +++ b/Test/baseResults/hlsl.scalar-length.frag.out @@ -63,7 +63,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 30 diff --git a/Test/baseResults/hlsl.scalar2matrix.frag.out b/Test/baseResults/hlsl.scalar2matrix.frag.out index 453c50e1..ac80dc01 100644 --- a/Test/baseResults/hlsl.scalar2matrix.frag.out +++ b/Test/baseResults/hlsl.scalar2matrix.frag.out @@ -373,7 +373,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 96 diff --git a/Test/baseResults/hlsl.scalarCast.vert.out b/Test/baseResults/hlsl.scalarCast.vert.out index ee3a1c51..27983f98 100755 --- a/Test/baseResults/hlsl.scalarCast.vert.out +++ b/Test/baseResults/hlsl.scalarCast.vert.out @@ -321,7 +321,7 @@ Shader version: 500 0:? '@entryPointOutput.position' ( out 4-component vector of float Position) 0:? '@entryPointOutput.texCoord' (layout( location=0) out 2-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 120 diff --git a/Test/baseResults/hlsl.scope.frag.out b/Test/baseResults/hlsl.scope.frag.out index aaf94ef3..92f461f7 100755 --- a/Test/baseResults/hlsl.scope.frag.out +++ b/Test/baseResults/hlsl.scope.frag.out @@ -101,7 +101,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? 'input' (layout( location=0) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 49 diff --git a/Test/baseResults/hlsl.semantic-1.vert.out b/Test/baseResults/hlsl.semantic-1.vert.out index f470be1f..d45f03f1 100644 --- a/Test/baseResults/hlsl.semantic-1.vert.out +++ b/Test/baseResults/hlsl.semantic-1.vert.out @@ -241,7 +241,7 @@ Shader version: 500 0:? '@entryPointOutput.UV3' (layout( location=4) out 2-component vector of float) 0:? 'v' (layout( location=0) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 84 diff --git a/Test/baseResults/hlsl.semantic.geom.out b/Test/baseResults/hlsl.semantic.geom.out index 630b9c37..3378d21f 100755 --- a/Test/baseResults/hlsl.semantic.geom.out +++ b/Test/baseResults/hlsl.semantic.geom.out @@ -155,7 +155,7 @@ output primitive = line_strip 0:? 'OutputStream.clip0' ( out 1-element array of float ClipDistance) 0:? 'OutputStream.cull0' ( out 1-element array of float CullDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 65 diff --git a/Test/baseResults/hlsl.semantic.vert.out b/Test/baseResults/hlsl.semantic.vert.out index 80d3ab2e..885c8986 100755 --- a/Test/baseResults/hlsl.semantic.vert.out +++ b/Test/baseResults/hlsl.semantic.vert.out @@ -209,7 +209,7 @@ Shader version: 500 0:? '@entryPointOutput.clip1' ( out 2-element array of float ClipDistance) 0:? '@entryPointOutput.cull1' ( out 2-element array of float CullDistance) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 70 diff --git a/Test/baseResults/hlsl.semicolons.frag.out b/Test/baseResults/hlsl.semicolons.frag.out index 104cc294..1138dafc 100644 --- a/Test/baseResults/hlsl.semicolons.frag.out +++ b/Test/baseResults/hlsl.semicolons.frag.out @@ -73,7 +73,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput.color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 31 diff --git a/Test/baseResults/hlsl.shapeConv.frag.out b/Test/baseResults/hlsl.shapeConv.frag.out index 4be177a4..afcc1f6f 100755 --- a/Test/baseResults/hlsl.shapeConv.frag.out +++ b/Test/baseResults/hlsl.shapeConv.frag.out @@ -320,7 +320,7 @@ gl_FragCoord origin is upper left 0:48 3.000000 0:? Linker Objects -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 127 diff --git a/Test/baseResults/hlsl.shapeConvRet.frag.out b/Test/baseResults/hlsl.shapeConvRet.frag.out index ae6f094b..3a9e6447 100755 --- a/Test/baseResults/hlsl.shapeConvRet.frag.out +++ b/Test/baseResults/hlsl.shapeConvRet.frag.out @@ -67,7 +67,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'f' (layout( location=0) in float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 35 diff --git a/Test/baseResults/hlsl.sin.frag.out b/Test/baseResults/hlsl.sin.frag.out index 5a6f6ef0..cfbfd9ce 100755 --- a/Test/baseResults/hlsl.sin.frag.out +++ b/Test/baseResults/hlsl.sin.frag.out @@ -51,7 +51,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'input' (layout( location=0) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 26 diff --git a/Test/baseResults/hlsl.snorm.uav.comp.out b/Test/baseResults/hlsl.snorm.uav.comp.out index 181cb4e4..95557f07 100644 --- a/Test/baseResults/hlsl.snorm.uav.comp.out +++ b/Test/baseResults/hlsl.snorm.uav.comp.out @@ -111,7 +111,7 @@ local_size = (16, 16, 1) 0:? 'ResultOutS' (layout( binding=1 rgba32f) uniform image3D) 0:? 'tid' ( in 3-component vector of uint GlobalInvocationID) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 54 diff --git a/Test/baseResults/hlsl.staticMemberFunction.frag.out b/Test/baseResults/hlsl.staticMemberFunction.frag.out index 4efdb0b5..aa14f5fa 100755 --- a/Test/baseResults/hlsl.staticMemberFunction.frag.out +++ b/Test/baseResults/hlsl.staticMemberFunction.frag.out @@ -117,7 +117,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 54 diff --git a/Test/baseResults/hlsl.store.rwbyteaddressbuffer.type.comp.out b/Test/baseResults/hlsl.store.rwbyteaddressbuffer.type.comp.out index fe4d2d2b..7674acda 100644 --- a/Test/baseResults/hlsl.store.rwbyteaddressbuffer.type.comp.out +++ b/Test/baseResults/hlsl.store.rwbyteaddressbuffer.type.comp.out @@ -95,7 +95,7 @@ local_size = (64, 1, 1) 0:? 'buffer' (layout( row_major std430) buffer block{layout( row_major std430) buffer implicitly-sized array of uint @data}) 0:? 'dispatchThreadID' ( in 3-component vector of uint GlobalInvocationID) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 42 diff --git a/Test/baseResults/hlsl.string.frag.out b/Test/baseResults/hlsl.string.frag.out index 25903b06..31dbc04f 100755 --- a/Test/baseResults/hlsl.string.frag.out +++ b/Test/baseResults/hlsl.string.frag.out @@ -49,7 +49,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out float) 0:? 'f' (layout( location=0) in float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 24 diff --git a/Test/baseResults/hlsl.stringtoken.frag.out b/Test/baseResults/hlsl.stringtoken.frag.out index a210de70..9a1fa81e 100644 --- a/Test/baseResults/hlsl.stringtoken.frag.out +++ b/Test/baseResults/hlsl.stringtoken.frag.out @@ -69,7 +69,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform 4-component vector of float TestUF}) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 34 diff --git a/Test/baseResults/hlsl.struct.frag.out b/Test/baseResults/hlsl.struct.frag.out index ae37ddde..8ca14cc1 100755 --- a/Test/baseResults/hlsl.struct.frag.out +++ b/Test/baseResults/hlsl.struct.frag.out @@ -211,7 +211,7 @@ gl_FragCoord origin is upper left 0:? 's.ff3' (layout( location=6) flat in bool) 0:? 's.ff4' (layout( location=7) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 102 diff --git a/Test/baseResults/hlsl.struct.split-1.vert.out b/Test/baseResults/hlsl.struct.split-1.vert.out index 02656c1c..c0f3a53b 100644 --- a/Test/baseResults/hlsl.struct.split-1.vert.out +++ b/Test/baseResults/hlsl.struct.split-1.vert.out @@ -195,7 +195,7 @@ Shader version: 500 0:? 'vsin.x1_in' (layout( location=2) in int) 0:? 'Pos_loose' (layout( location=3) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 70 diff --git a/Test/baseResults/hlsl.struct.split.array.geom.out b/Test/baseResults/hlsl.struct.split.array.geom.out index 2fe3897f..b70ccb6a 100644 --- a/Test/baseResults/hlsl.struct.split.array.geom.out +++ b/Test/baseResults/hlsl.struct.split.array.geom.out @@ -159,7 +159,7 @@ output primitive = triangle_strip 0:? 'OutputStream.TerrainPos' (layout( location=1) out 3-component vector of float) 0:? 'OutputStream.VertexID' (layout( location=2) out uint) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 82 diff --git a/Test/baseResults/hlsl.struct.split.assign.frag.out b/Test/baseResults/hlsl.struct.split.assign.frag.out index 91ff540d..013ee1b2 100644 --- a/Test/baseResults/hlsl.struct.split.assign.frag.out +++ b/Test/baseResults/hlsl.struct.split.assign.frag.out @@ -207,7 +207,7 @@ gl_FragCoord origin is upper left 0:? 'input[1].f' (layout( location=2) in float) 0:? 'input[2].f' (layout( location=3) in float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 66 diff --git a/Test/baseResults/hlsl.struct.split.call.vert.out b/Test/baseResults/hlsl.struct.split.call.vert.out index ed9e9629..de5b7df0 100644 --- a/Test/baseResults/hlsl.struct.split.call.vert.out +++ b/Test/baseResults/hlsl.struct.split.call.vert.out @@ -213,7 +213,7 @@ Shader version: 500 0:? 'vsin.Pos_in' (layout( location=1) in 4-component vector of float) 0:? 'vsin.x1_in' (layout( location=2) in int) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 77 diff --git a/Test/baseResults/hlsl.struct.split.nested.geom.out b/Test/baseResults/hlsl.struct.split.nested.geom.out index 23dbbbf1..7ec508f4 100644 --- a/Test/baseResults/hlsl.struct.split.nested.geom.out +++ b/Test/baseResults/hlsl.struct.split.nested.geom.out @@ -447,7 +447,7 @@ output primitive = triangle_strip 0:? 'ts.contains_no_builtin_io.m0_array[1]' (layout( location=2) out float) 0:? 'ts.contains_no_builtin_io.m1' (layout( location=3) out int) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 100 diff --git a/Test/baseResults/hlsl.struct.split.trivial.geom.out b/Test/baseResults/hlsl.struct.split.trivial.geom.out index 7a49ceca..79dd1d57 100644 --- a/Test/baseResults/hlsl.struct.split.trivial.geom.out +++ b/Test/baseResults/hlsl.struct.split.trivial.geom.out @@ -191,7 +191,7 @@ output primitive = triangle_strip 0:? 'i.pos' ( in 3-element array of 4-component vector of float Position) 0:? 'ts.pos' ( out 4-component vector of float Position) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 67 diff --git a/Test/baseResults/hlsl.struct.split.trivial.vert.out b/Test/baseResults/hlsl.struct.split.trivial.vert.out index 038c53d1..0c98e6fc 100644 --- a/Test/baseResults/hlsl.struct.split.trivial.vert.out +++ b/Test/baseResults/hlsl.struct.split.trivial.vert.out @@ -97,7 +97,7 @@ Shader version: 500 0:? 'vsin.Pos_in' (layout( location=0) in 4-component vector of float) 0:? 'Pos_loose' (layout( location=1) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 45 diff --git a/Test/baseResults/hlsl.structIoFourWay.frag.out b/Test/baseResults/hlsl.structIoFourWay.frag.out index 96df92ac..61477039 100755 --- a/Test/baseResults/hlsl.structIoFourWay.frag.out +++ b/Test/baseResults/hlsl.structIoFourWay.frag.out @@ -161,7 +161,7 @@ using depth_greater 0:? 't.d' (layout( location=2) in float) 0:? 't.normal' (layout( location=3) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 65 diff --git a/Test/baseResults/hlsl.structStructName.frag.out b/Test/baseResults/hlsl.structStructName.frag.out index d575a65b..3b18239e 100755 --- a/Test/baseResults/hlsl.structStructName.frag.out +++ b/Test/baseResults/hlsl.structStructName.frag.out @@ -43,7 +43,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput' (layout( location=0) out int) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 22 diff --git a/Test/baseResults/hlsl.structarray.flatten.frag.out b/Test/baseResults/hlsl.structarray.flatten.frag.out index 1e3512eb..d2e311a7 100644 --- a/Test/baseResults/hlsl.structarray.flatten.frag.out +++ b/Test/baseResults/hlsl.structarray.flatten.frag.out @@ -155,7 +155,7 @@ gl_FragCoord origin is upper left 0:? 'g_texdata_array2[2].nonopaque_thing' ( uniform int) 0:? 'ps_output.color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 80 diff --git a/Test/baseResults/hlsl.structarray.flatten.geom.out b/Test/baseResults/hlsl.structarray.flatten.geom.out index e298cc7c..67dcf995 100644 --- a/Test/baseResults/hlsl.structarray.flatten.geom.out +++ b/Test/baseResults/hlsl.structarray.flatten.geom.out @@ -169,7 +169,7 @@ output primitive = triangle_strip 0:? 'outStream.color' (layout( location=0) out 4-component vector of float) 0:? 'outStream.uv' (layout( location=1) out 2-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 58 diff --git a/Test/baseResults/hlsl.structbuffer.append.fn.frag.out b/Test/baseResults/hlsl.structbuffer.append.fn.frag.out index 40d6abe3..2e9d9855 100644 --- a/Test/baseResults/hlsl.structbuffer.append.fn.frag.out +++ b/Test/baseResults/hlsl.structbuffer.append.fn.frag.out @@ -149,7 +149,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'pos' (layout( location=0) flat in uint) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 70 diff --git a/Test/baseResults/hlsl.structbuffer.append.frag.out b/Test/baseResults/hlsl.structbuffer.append.frag.out index 1b24cda8..7425b259 100644 --- a/Test/baseResults/hlsl.structbuffer.append.frag.out +++ b/Test/baseResults/hlsl.structbuffer.append.frag.out @@ -123,7 +123,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'pos' (layout( location=0) flat in uint) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 56 diff --git a/Test/baseResults/hlsl.structbuffer.atomics.frag.out b/Test/baseResults/hlsl.structbuffer.atomics.frag.out index 3e02d64f..188b7976 100644 --- a/Test/baseResults/hlsl.structbuffer.atomics.frag.out +++ b/Test/baseResults/hlsl.structbuffer.atomics.frag.out @@ -473,7 +473,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'pos' (layout( location=0) flat in uint) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 87 diff --git a/Test/baseResults/hlsl.structbuffer.byte.frag.out b/Test/baseResults/hlsl.structbuffer.byte.frag.out index 3b4bb2a5..8994ed41 100644 --- a/Test/baseResults/hlsl.structbuffer.byte.frag.out +++ b/Test/baseResults/hlsl.structbuffer.byte.frag.out @@ -323,7 +323,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'pos' (layout( location=0) flat in uint) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 114 diff --git a/Test/baseResults/hlsl.structbuffer.coherent.frag.out b/Test/baseResults/hlsl.structbuffer.coherent.frag.out index bb145af2..e0ee89b7 100644 --- a/Test/baseResults/hlsl.structbuffer.coherent.frag.out +++ b/Test/baseResults/hlsl.structbuffer.coherent.frag.out @@ -175,7 +175,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'pos' (layout( location=0) flat in uint) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 78 diff --git a/Test/baseResults/hlsl.structbuffer.floatidx.comp.out b/Test/baseResults/hlsl.structbuffer.floatidx.comp.out index b1ed41a1..36674cac 100644 --- a/Test/baseResults/hlsl.structbuffer.floatidx.comp.out +++ b/Test/baseResults/hlsl.structbuffer.floatidx.comp.out @@ -179,7 +179,7 @@ local_size = (1, 1, 1) 0:? 'rwsb' (layout( row_major std430) buffer block{layout( row_major std430) buffer implicitly-sized array of 4-component vector of float @data}) 0:? 'nThreadId' ( in 3-component vector of uint GlobalInvocationID) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 84 diff --git a/Test/baseResults/hlsl.structbuffer.fn.frag.out b/Test/baseResults/hlsl.structbuffer.fn.frag.out index b0fe6291..ab1344a1 100644 --- a/Test/baseResults/hlsl.structbuffer.fn.frag.out +++ b/Test/baseResults/hlsl.structbuffer.fn.frag.out @@ -137,7 +137,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'pos' (layout( location=0) flat in uint) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 78 diff --git a/Test/baseResults/hlsl.structbuffer.fn2.comp.out b/Test/baseResults/hlsl.structbuffer.fn2.comp.out index f5358a4a..994ecf15 100644 --- a/Test/baseResults/hlsl.structbuffer.fn2.comp.out +++ b/Test/baseResults/hlsl.structbuffer.fn2.comp.out @@ -133,7 +133,7 @@ local_size = (256, 1, 1) 0:? 'g_output' (layout( binding=1 rg32ui) uniform uimageBuffer) 0:? 'dispatchId' ( in uint GlobalInvocationID) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 61 diff --git a/Test/baseResults/hlsl.structbuffer.frag.out b/Test/baseResults/hlsl.structbuffer.frag.out index 1f4f6610..dbc78c78 100644 --- a/Test/baseResults/hlsl.structbuffer.frag.out +++ b/Test/baseResults/hlsl.structbuffer.frag.out @@ -187,7 +187,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'pos' (layout( location=0) flat in uint) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 96 diff --git a/Test/baseResults/hlsl.structbuffer.incdec.frag.out b/Test/baseResults/hlsl.structbuffer.incdec.frag.out index 8ab6515c..c00183e3 100644 --- a/Test/baseResults/hlsl.structbuffer.incdec.frag.out +++ b/Test/baseResults/hlsl.structbuffer.incdec.frag.out @@ -203,7 +203,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'pos' (layout( location=0) flat in uint) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 70 diff --git a/Test/baseResults/hlsl.structbuffer.rw.frag.out b/Test/baseResults/hlsl.structbuffer.rw.frag.out index 12744b16..66043135 100644 --- a/Test/baseResults/hlsl.structbuffer.rw.frag.out +++ b/Test/baseResults/hlsl.structbuffer.rw.frag.out @@ -175,7 +175,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'pos' (layout( location=0) flat in uint) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 78 diff --git a/Test/baseResults/hlsl.structbuffer.rwbyte.frag.out b/Test/baseResults/hlsl.structbuffer.rwbyte.frag.out index 8a746a05..a5b85059 100644 --- a/Test/baseResults/hlsl.structbuffer.rwbyte.frag.out +++ b/Test/baseResults/hlsl.structbuffer.rwbyte.frag.out @@ -1003,7 +1003,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'pos' (layout( location=0) flat in uint) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 239 diff --git a/Test/baseResults/hlsl.structin.vert.out b/Test/baseResults/hlsl.structin.vert.out index c1008891..e605ed3b 100755 --- a/Test/baseResults/hlsl.structin.vert.out +++ b/Test/baseResults/hlsl.structin.vert.out @@ -339,7 +339,7 @@ Shader version: 500 0:? 'vi.b' (layout( location=4) in 4-component vector of float) 0:? 'e' (layout( location=5) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 94 diff --git a/Test/baseResults/hlsl.subpass.frag.out b/Test/baseResults/hlsl.subpass.frag.out index c15d7a0f..6059127a 100644 --- a/Test/baseResults/hlsl.subpass.frag.out +++ b/Test/baseResults/hlsl.subpass.frag.out @@ -429,7 +429,7 @@ gl_FragCoord origin is upper left 0:? 'subpass_2' ( uniform subpassInput) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 204 diff --git a/Test/baseResults/hlsl.switch.frag.out b/Test/baseResults/hlsl.switch.frag.out index 93619d33..b440d4ed 100755 --- a/Test/baseResults/hlsl.switch.frag.out +++ b/Test/baseResults/hlsl.switch.frag.out @@ -295,7 +295,7 @@ gl_FragCoord origin is upper left 0:? 'c' (layout( location=1) flat in int) 0:? 'd' (layout( location=2) flat in int) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 106 diff --git a/Test/baseResults/hlsl.swizzle.frag.out b/Test/baseResults/hlsl.swizzle.frag.out index c938386f..9caa7f33 100755 --- a/Test/baseResults/hlsl.swizzle.frag.out +++ b/Test/baseResults/hlsl.swizzle.frag.out @@ -76,7 +76,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? 'AmbientColor' ( global 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 30 diff --git a/Test/baseResults/hlsl.synthesizeInput.frag.out b/Test/baseResults/hlsl.synthesizeInput.frag.out index 7a5aa896..2fb0bf1e 100755 --- a/Test/baseResults/hlsl.synthesizeInput.frag.out +++ b/Test/baseResults/hlsl.synthesizeInput.frag.out @@ -97,7 +97,7 @@ gl_FragCoord origin is upper left 0:? 'input.interp' (layout( location=0) in float) 0:? 'input.no_interp' (layout( location=1) flat in uint) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 44 diff --git a/Test/baseResults/hlsl.target.frag.out b/Test/baseResults/hlsl.target.frag.out index 1e6b6a21..e748b984 100755 --- a/Test/baseResults/hlsl.target.frag.out +++ b/Test/baseResults/hlsl.target.frag.out @@ -113,7 +113,7 @@ gl_FragCoord origin is upper left 0:? 'out1' (layout( location=1) out 4-component vector of float) 0:? 'out2' (layout( location=3) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 50 diff --git a/Test/baseResults/hlsl.targetStruct1.frag.out b/Test/baseResults/hlsl.targetStruct1.frag.out index 2b0d3246..b6a73a1a 100755 --- a/Test/baseResults/hlsl.targetStruct1.frag.out +++ b/Test/baseResults/hlsl.targetStruct1.frag.out @@ -183,7 +183,7 @@ gl_FragCoord origin is upper left 0:? 'input.no_interp' (layout( location=1) flat in uint) 0:? 'po' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 65 diff --git a/Test/baseResults/hlsl.targetStruct2.frag.out b/Test/baseResults/hlsl.targetStruct2.frag.out index 30a47152..d4bde1f6 100755 --- a/Test/baseResults/hlsl.targetStruct2.frag.out +++ b/Test/baseResults/hlsl.targetStruct2.frag.out @@ -183,7 +183,7 @@ gl_FragCoord origin is upper left 0:? 'input.no_interp' (layout( location=1) flat in uint) 0:? 'po' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 65 diff --git a/Test/baseResults/hlsl.templatetypes.frag.out b/Test/baseResults/hlsl.templatetypes.frag.out index 0c4b25e7..33b734dd 100644 --- a/Test/baseResults/hlsl.templatetypes.frag.out +++ b/Test/baseResults/hlsl.templatetypes.frag.out @@ -507,7 +507,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput' (layout( location=0) out float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 153 diff --git a/Test/baseResults/hlsl.texture.struct.frag.out b/Test/baseResults/hlsl.texture.struct.frag.out index 6e0e7ef8..b60bd3af 100644 --- a/Test/baseResults/hlsl.texture.struct.frag.out +++ b/Test/baseResults/hlsl.texture.struct.frag.out @@ -837,7 +837,7 @@ gl_FragCoord origin is upper left 0:? 'g_tTex2s1a' ( uniform texture2D) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 240 diff --git a/Test/baseResults/hlsl.texture.subvec4.frag.out b/Test/baseResults/hlsl.texture.subvec4.frag.out index b372cf7f..5cb3bad4 100644 --- a/Test/baseResults/hlsl.texture.subvec4.frag.out +++ b/Test/baseResults/hlsl.texture.subvec4.frag.out @@ -355,7 +355,7 @@ gl_FragCoord origin is upper left 0:? 'g_sSamp' ( uniform sampler) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 130 diff --git a/Test/baseResults/hlsl.texturebuffer.frag.out b/Test/baseResults/hlsl.texturebuffer.frag.out index fce5ac70..51860a29 100644 --- a/Test/baseResults/hlsl.texturebuffer.frag.out +++ b/Test/baseResults/hlsl.texturebuffer.frag.out @@ -69,7 +69,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'pos' ( in 4-component vector of float FragCoord) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 39 diff --git a/Test/baseResults/hlsl.this.frag.out b/Test/baseResults/hlsl.this.frag.out index acca3051..7e0318af 100755 --- a/Test/baseResults/hlsl.this.frag.out +++ b/Test/baseResults/hlsl.this.frag.out @@ -239,7 +239,7 @@ gl_FragCoord origin is upper left 0:? 'var' ( global 2-component vector of float) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 98 diff --git a/Test/baseResults/hlsl.tx.bracket.frag.out b/Test/baseResults/hlsl.tx.bracket.frag.out index 9c229cf8..a07f3264 100644 --- a/Test/baseResults/hlsl.tx.bracket.frag.out +++ b/Test/baseResults/hlsl.tx.bracket.frag.out @@ -421,7 +421,7 @@ gl_FragCoord origin is upper left 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform int c1, uniform 2-component vector of int c2, uniform 3-component vector of int c3, uniform 4-component vector of int c4, uniform int o1, uniform 2-component vector of int o2, uniform 3-component vector of int o3, uniform 4-component vector of int o4}) 0:? '@entryPointOutput.Color' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 188 diff --git a/Test/baseResults/hlsl.tx.overload.frag.out b/Test/baseResults/hlsl.tx.overload.frag.out index 5c248b1d..79610c95 100644 --- a/Test/baseResults/hlsl.tx.overload.frag.out +++ b/Test/baseResults/hlsl.tx.overload.frag.out @@ -133,7 +133,7 @@ gl_FragCoord origin is upper left 0:? 'twf4' (layout( rgba32f) uniform image2D) 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 73 diff --git a/Test/baseResults/hlsl.type.half.frag.out b/Test/baseResults/hlsl.type.half.frag.out index 4160d884..e19b3113 100644 --- a/Test/baseResults/hlsl.type.half.frag.out +++ b/Test/baseResults/hlsl.type.half.frag.out @@ -163,7 +163,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 60 diff --git a/Test/baseResults/hlsl.type.identifier.frag.out b/Test/baseResults/hlsl.type.identifier.frag.out index d6c40577..9e7861cc 100644 --- a/Test/baseResults/hlsl.type.identifier.frag.out +++ b/Test/baseResults/hlsl.type.identifier.frag.out @@ -265,7 +265,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 109 diff --git a/Test/baseResults/hlsl.typeGraphCopy.vert.out b/Test/baseResults/hlsl.typeGraphCopy.vert.out index 3f45ebeb..81291dc7 100755 --- a/Test/baseResults/hlsl.typeGraphCopy.vert.out +++ b/Test/baseResults/hlsl.typeGraphCopy.vert.out @@ -61,7 +61,7 @@ Shader version: 500 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform structure{ temp structure{ temp structure{ temp int a, temp float b} s1, temp structure{ temp int a, temp float b} s2} t1, temp structure{ temp int a, temp float b} t2, temp structure{ temp structure{ temp int a, temp float b} s1, temp structure{ temp int a, temp float b} s2} t3} foo}) 0:? '@entryPointOutput' (layout( location=0) out float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 28 diff --git a/Test/baseResults/hlsl.typedef.frag.out b/Test/baseResults/hlsl.typedef.frag.out index 50de1ef3..0b5dc287 100755 --- a/Test/baseResults/hlsl.typedef.frag.out +++ b/Test/baseResults/hlsl.typedef.frag.out @@ -78,7 +78,7 @@ gl_FragCoord origin is upper left 0:10 'j' ( temp int) 0:? Linker Objects -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 34 diff --git a/Test/baseResults/hlsl.void.frag.out b/Test/baseResults/hlsl.void.frag.out index 40a29bf3..60c58cb3 100755 --- a/Test/baseResults/hlsl.void.frag.out +++ b/Test/baseResults/hlsl.void.frag.out @@ -53,7 +53,7 @@ gl_FragCoord origin is upper left 0:? Linker Objects 0:? 'input' (layout( location=0) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 27 diff --git a/Test/baseResults/hlsl.whileLoop.frag.out b/Test/baseResults/hlsl.whileLoop.frag.out index 03e3d2c7..e4fc0d45 100755 --- a/Test/baseResults/hlsl.whileLoop.frag.out +++ b/Test/baseResults/hlsl.whileLoop.frag.out @@ -95,7 +95,7 @@ gl_FragCoord origin is upper left 0:? '@entryPointOutput' (layout( location=0) out 4-component vector of float) 0:? 'input' (layout( location=0) in 4-component vector of float) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 52 diff --git a/Test/baseResults/hlsl.y-negate-1.vert.out b/Test/baseResults/hlsl.y-negate-1.vert.out index a17be216..41c64700 100644 --- a/Test/baseResults/hlsl.y-negate-1.vert.out +++ b/Test/baseResults/hlsl.y-negate-1.vert.out @@ -71,7 +71,7 @@ Shader version: 500 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform 4-component vector of float pos}) 0:? '@entryPointOutput' ( out 4-component vector of float Position) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 34 diff --git a/Test/baseResults/hlsl.y-negate-2.vert.out b/Test/baseResults/hlsl.y-negate-2.vert.out index 6f328a6f..b228e463 100644 --- a/Test/baseResults/hlsl.y-negate-2.vert.out +++ b/Test/baseResults/hlsl.y-negate-2.vert.out @@ -79,7 +79,7 @@ Shader version: 500 0:? 'anon@0' (layout( row_major std140) uniform block{ uniform 4-component vector of float pos}) 0:? 'position' ( out 4-component vector of float Position) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 37 diff --git a/Test/baseResults/hlsl.y-negate-3.vert.out b/Test/baseResults/hlsl.y-negate-3.vert.out index a9706a67..4a87232c 100644 --- a/Test/baseResults/hlsl.y-negate-3.vert.out +++ b/Test/baseResults/hlsl.y-negate-3.vert.out @@ -125,7 +125,7 @@ Shader version: 500 0:? '@entryPointOutput.pos' ( out 4-component vector of float Position) 0:? '@entryPointOutput.somethingelse' (layout( location=0) out int) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 50 diff --git a/Test/baseResults/remap.basic.dcefunc.frag.out b/Test/baseResults/remap.basic.dcefunc.frag.out index 2db2baf7..abd8e982 100644 --- a/Test/baseResults/remap.basic.dcefunc.frag.out +++ b/Test/baseResults/remap.basic.dcefunc.frag.out @@ -1,5 +1,5 @@ remap.basic.dcefunc.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 22 diff --git a/Test/baseResults/remap.basic.everything.frag.out b/Test/baseResults/remap.basic.everything.frag.out index c52345bd..b5a5ba7e 100644 --- a/Test/baseResults/remap.basic.everything.frag.out +++ b/Test/baseResults/remap.basic.everything.frag.out @@ -1,5 +1,5 @@ remap.basic.everything.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 24969 diff --git a/Test/baseResults/remap.basic.none.frag.out b/Test/baseResults/remap.basic.none.frag.out index dd6bad84..90118b05 100644 --- a/Test/baseResults/remap.basic.none.frag.out +++ b/Test/baseResults/remap.basic.none.frag.out @@ -1,5 +1,5 @@ remap.basic.none.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 22 diff --git a/Test/baseResults/remap.basic.strip.frag.out b/Test/baseResults/remap.basic.strip.frag.out index 1f1b59ee..e3e0b0c7 100644 --- a/Test/baseResults/remap.basic.strip.frag.out +++ b/Test/baseResults/remap.basic.strip.frag.out @@ -1,5 +1,5 @@ remap.basic.strip.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 22 diff --git a/Test/baseResults/remap.hlsl.sample.basic.everything.frag.out b/Test/baseResults/remap.hlsl.sample.basic.everything.frag.out index 322988e8..77ed4f35 100644 --- a/Test/baseResults/remap.hlsl.sample.basic.everything.frag.out +++ b/Test/baseResults/remap.hlsl.sample.basic.everything.frag.out @@ -1,7 +1,7 @@ remap.hlsl.sample.basic.everything.frag WARNING: 0:4: 'immediate sampler state' : unimplemented -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 24878 diff --git a/Test/baseResults/remap.hlsl.sample.basic.none.frag.out b/Test/baseResults/remap.hlsl.sample.basic.none.frag.out index e2b71aff..459c19f1 100644 --- a/Test/baseResults/remap.hlsl.sample.basic.none.frag.out +++ b/Test/baseResults/remap.hlsl.sample.basic.none.frag.out @@ -1,7 +1,7 @@ remap.hlsl.sample.basic.none.frag WARNING: 0:4: 'immediate sampler state' : unimplemented -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 198 diff --git a/Test/baseResults/remap.hlsl.sample.basic.strip.frag.out b/Test/baseResults/remap.hlsl.sample.basic.strip.frag.out index 3e6e6bef..4c9e87ec 100644 --- a/Test/baseResults/remap.hlsl.sample.basic.strip.frag.out +++ b/Test/baseResults/remap.hlsl.sample.basic.strip.frag.out @@ -1,7 +1,7 @@ remap.hlsl.sample.basic.strip.frag WARNING: 0:4: 'immediate sampler state' : unimplemented -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 198 diff --git a/Test/baseResults/remap.hlsl.templatetypes.everything.frag.out b/Test/baseResults/remap.hlsl.templatetypes.everything.frag.out index 986f407d..e410ccfa 100644 --- a/Test/baseResults/remap.hlsl.templatetypes.everything.frag.out +++ b/Test/baseResults/remap.hlsl.templatetypes.everything.frag.out @@ -1,5 +1,5 @@ remap.hlsl.templatetypes.everything.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 24954 diff --git a/Test/baseResults/remap.hlsl.templatetypes.none.frag.out b/Test/baseResults/remap.hlsl.templatetypes.none.frag.out index 51b012f0..ef31f71b 100644 --- a/Test/baseResults/remap.hlsl.templatetypes.none.frag.out +++ b/Test/baseResults/remap.hlsl.templatetypes.none.frag.out @@ -1,5 +1,5 @@ remap.hlsl.templatetypes.none.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 160 diff --git a/Test/baseResults/remap.if.everything.frag.out b/Test/baseResults/remap.if.everything.frag.out index d7e2f5a4..c63002dd 100644 --- a/Test/baseResults/remap.if.everything.frag.out +++ b/Test/baseResults/remap.if.everything.frag.out @@ -1,5 +1,5 @@ remap.if.everything.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 22855 diff --git a/Test/baseResults/remap.if.none.frag.out b/Test/baseResults/remap.if.none.frag.out index b0560956..2bb50b6d 100644 --- a/Test/baseResults/remap.if.none.frag.out +++ b/Test/baseResults/remap.if.none.frag.out @@ -1,5 +1,5 @@ remap.if.none.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 25 diff --git a/Test/baseResults/remap.similar_1a.everything.frag.out b/Test/baseResults/remap.similar_1a.everything.frag.out index 3dde4c25..94e1f86a 100644 --- a/Test/baseResults/remap.similar_1a.everything.frag.out +++ b/Test/baseResults/remap.similar_1a.everything.frag.out @@ -1,5 +1,5 @@ remap.similar_1a.everything.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 24916 diff --git a/Test/baseResults/remap.similar_1a.none.frag.out b/Test/baseResults/remap.similar_1a.none.frag.out index 9c7a1f89..508b54d0 100644 --- a/Test/baseResults/remap.similar_1a.none.frag.out +++ b/Test/baseResults/remap.similar_1a.none.frag.out @@ -1,5 +1,5 @@ remap.similar_1a.none.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 86 diff --git a/Test/baseResults/remap.similar_1b.everything.frag.out b/Test/baseResults/remap.similar_1b.everything.frag.out index 76dbb1a2..4cd16b4e 100644 --- a/Test/baseResults/remap.similar_1b.everything.frag.out +++ b/Test/baseResults/remap.similar_1b.everything.frag.out @@ -1,5 +1,5 @@ remap.similar_1b.everything.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 24916 diff --git a/Test/baseResults/remap.similar_1b.none.frag.out b/Test/baseResults/remap.similar_1b.none.frag.out index feab0f73..e5ad330c 100644 --- a/Test/baseResults/remap.similar_1b.none.frag.out +++ b/Test/baseResults/remap.similar_1b.none.frag.out @@ -1,5 +1,5 @@ remap.similar_1b.none.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 91 diff --git a/Test/baseResults/remap.specconst.comp.out b/Test/baseResults/remap.specconst.comp.out index bae62b0c..3827cb15 100644 --- a/Test/baseResults/remap.specconst.comp.out +++ b/Test/baseResults/remap.specconst.comp.out @@ -1,5 +1,5 @@ remap.specconst.comp -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 16104 diff --git a/Test/baseResults/remap.switch.everything.frag.out b/Test/baseResults/remap.switch.everything.frag.out index bc604f27..d56bfceb 100644 --- a/Test/baseResults/remap.switch.everything.frag.out +++ b/Test/baseResults/remap.switch.everything.frag.out @@ -2,7 +2,7 @@ remap.switch.everything.frag WARNING: 0:5: '' : all default precisions are highp; use precision statements to quiet warning, e.g.: "precision mediump int; precision highp float;" -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 23990 diff --git a/Test/baseResults/remap.switch.none.frag.out b/Test/baseResults/remap.switch.none.frag.out index 109a4639..bb42c65f 100644 --- a/Test/baseResults/remap.switch.none.frag.out +++ b/Test/baseResults/remap.switch.none.frag.out @@ -2,7 +2,7 @@ remap.switch.none.frag WARNING: 0:5: '' : all default precisions are highp; use precision statements to quiet warning, e.g.: "precision mediump int; precision highp float;" -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 48 diff --git a/Test/baseResults/remap.uniformarray.everything.frag.out b/Test/baseResults/remap.uniformarray.everything.frag.out index 8cfff583..521819d8 100644 --- a/Test/baseResults/remap.uniformarray.everything.frag.out +++ b/Test/baseResults/remap.uniformarray.everything.frag.out @@ -1,5 +1,5 @@ remap.uniformarray.everything.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 25030 diff --git a/Test/baseResults/remap.uniformarray.none.frag.out b/Test/baseResults/remap.uniformarray.none.frag.out index f1d98e75..1bc458e8 100644 --- a/Test/baseResults/remap.uniformarray.none.frag.out +++ b/Test/baseResults/remap.uniformarray.none.frag.out @@ -1,5 +1,5 @@ remap.uniformarray.none.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 53 diff --git a/Test/baseResults/spv.100ops.frag.out b/Test/baseResults/spv.100ops.frag.out index 89ecb60e..f886b43e 100755 --- a/Test/baseResults/spv.100ops.frag.out +++ b/Test/baseResults/spv.100ops.frag.out @@ -1,5 +1,5 @@ spv.100ops.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 49 diff --git a/Test/baseResults/spv.130.frag.out b/Test/baseResults/spv.130.frag.out index 3cf6c665..43fa1965 100644 --- a/Test/baseResults/spv.130.frag.out +++ b/Test/baseResults/spv.130.frag.out @@ -1,7 +1,7 @@ spv.130.frag WARNING: 0:31: '#extension' : extension is only partially supported: GL_ARB_gpu_shader5 -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 205 diff --git a/Test/baseResults/spv.140.frag.out b/Test/baseResults/spv.140.frag.out index 89ec6505..15c69af2 100755 --- a/Test/baseResults/spv.140.frag.out +++ b/Test/baseResults/spv.140.frag.out @@ -1,5 +1,5 @@ spv.140.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 96 diff --git a/Test/baseResults/spv.150.geom.out b/Test/baseResults/spv.150.geom.out index d2600944..98769f77 100755 --- a/Test/baseResults/spv.150.geom.out +++ b/Test/baseResults/spv.150.geom.out @@ -1,5 +1,5 @@ spv.150.geom -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 71 diff --git a/Test/baseResults/spv.150.vert.out b/Test/baseResults/spv.150.vert.out index cc13387d..203a99d4 100755 --- a/Test/baseResults/spv.150.vert.out +++ b/Test/baseResults/spv.150.vert.out @@ -1,5 +1,5 @@ spv.150.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 63 diff --git a/Test/baseResults/spv.300BuiltIns.vert.out b/Test/baseResults/spv.300BuiltIns.vert.out index a3dd8fbf..2f0f269e 100755 --- a/Test/baseResults/spv.300BuiltIns.vert.out +++ b/Test/baseResults/spv.300BuiltIns.vert.out @@ -1,5 +1,5 @@ spv.300BuiltIns.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 42 diff --git a/Test/baseResults/spv.300layout.frag.out b/Test/baseResults/spv.300layout.frag.out index 9d8bfdf3..79797d71 100755 --- a/Test/baseResults/spv.300layout.frag.out +++ b/Test/baseResults/spv.300layout.frag.out @@ -1,5 +1,5 @@ spv.300layout.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 37 diff --git a/Test/baseResults/spv.300layout.vert.out b/Test/baseResults/spv.300layout.vert.out index cdadaa2f..4674d8c2 100644 --- a/Test/baseResults/spv.300layout.vert.out +++ b/Test/baseResults/spv.300layout.vert.out @@ -1,5 +1,5 @@ spv.300layout.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 163 diff --git a/Test/baseResults/spv.300layoutp.vert.out b/Test/baseResults/spv.300layoutp.vert.out index ae41bcdd..1f1ae9fc 100755 --- a/Test/baseResults/spv.300layoutp.vert.out +++ b/Test/baseResults/spv.300layoutp.vert.out @@ -1,5 +1,5 @@ spv.300layoutp.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 115 diff --git a/Test/baseResults/spv.310.bitcast.frag.out b/Test/baseResults/spv.310.bitcast.frag.out index d94e0eae..4b34c9fc 100755 --- a/Test/baseResults/spv.310.bitcast.frag.out +++ b/Test/baseResults/spv.310.bitcast.frag.out @@ -1,5 +1,5 @@ spv.310.bitcast.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 153 diff --git a/Test/baseResults/spv.310.comp.out b/Test/baseResults/spv.310.comp.out index a77b0ee9..5ca40f8d 100644 --- a/Test/baseResults/spv.310.comp.out +++ b/Test/baseResults/spv.310.comp.out @@ -1,5 +1,5 @@ spv.310.comp -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 71 diff --git a/Test/baseResults/spv.330.geom.out b/Test/baseResults/spv.330.geom.out index c1a7615a..5b211d09 100644 --- a/Test/baseResults/spv.330.geom.out +++ b/Test/baseResults/spv.330.geom.out @@ -1,5 +1,5 @@ spv.330.geom -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 32 diff --git a/Test/baseResults/spv.400.frag.out b/Test/baseResults/spv.400.frag.out index e1d3da96..3f73f5ba 100644 --- a/Test/baseResults/spv.400.frag.out +++ b/Test/baseResults/spv.400.frag.out @@ -1,5 +1,5 @@ spv.400.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 1118 diff --git a/Test/baseResults/spv.400.tesc.out b/Test/baseResults/spv.400.tesc.out index 186874a7..13c1ed4c 100644 --- a/Test/baseResults/spv.400.tesc.out +++ b/Test/baseResults/spv.400.tesc.out @@ -1,5 +1,5 @@ spv.400.tesc -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 92 diff --git a/Test/baseResults/spv.400.tese.out b/Test/baseResults/spv.400.tese.out index 7b07fb99..5a0c7459 100755 --- a/Test/baseResults/spv.400.tese.out +++ b/Test/baseResults/spv.400.tese.out @@ -1,5 +1,5 @@ spv.400.tese -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 96 diff --git a/Test/baseResults/spv.420.geom.out b/Test/baseResults/spv.420.geom.out index d0c18a01..41a84279 100644 --- a/Test/baseResults/spv.420.geom.out +++ b/Test/baseResults/spv.420.geom.out @@ -1,5 +1,5 @@ spv.420.geom -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 72 diff --git a/Test/baseResults/spv.430.frag.out b/Test/baseResults/spv.430.frag.out index d07687a8..97c35e1a 100755 --- a/Test/baseResults/spv.430.frag.out +++ b/Test/baseResults/spv.430.frag.out @@ -1,5 +1,5 @@ spv.430.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 24 diff --git a/Test/baseResults/spv.430.vert.out b/Test/baseResults/spv.430.vert.out index 66608af6..07f5cd7b 100755 --- a/Test/baseResults/spv.430.vert.out +++ b/Test/baseResults/spv.430.vert.out @@ -1,5 +1,5 @@ spv.430.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 66 diff --git a/Test/baseResults/spv.450.geom.out b/Test/baseResults/spv.450.geom.out index e4089b2a..e3b58e71 100755 --- a/Test/baseResults/spv.450.geom.out +++ b/Test/baseResults/spv.450.geom.out @@ -1,5 +1,5 @@ spv.450.geom -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 31 diff --git a/Test/baseResults/spv.450.noRedecl.tesc.out b/Test/baseResults/spv.450.noRedecl.tesc.out index 75485283..20a65929 100755 --- a/Test/baseResults/spv.450.noRedecl.tesc.out +++ b/Test/baseResults/spv.450.noRedecl.tesc.out @@ -1,5 +1,5 @@ spv.450.noRedecl.tesc -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 21 diff --git a/Test/baseResults/spv.450.tesc.out b/Test/baseResults/spv.450.tesc.out index ad7cad5a..a93b9cbd 100755 --- a/Test/baseResults/spv.450.tesc.out +++ b/Test/baseResults/spv.450.tesc.out @@ -1,5 +1,5 @@ spv.450.tesc -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 45 diff --git a/Test/baseResults/spv.460.comp.out b/Test/baseResults/spv.460.comp.out index aa46cc9e..be5148d5 100755 --- a/Test/baseResults/spv.460.comp.out +++ b/Test/baseResults/spv.460.comp.out @@ -1,5 +1,5 @@ spv.460.comp -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 15 diff --git a/Test/baseResults/spv.460.frag.out b/Test/baseResults/spv.460.frag.out index 0df9a5a0..c05676f1 100755 --- a/Test/baseResults/spv.460.frag.out +++ b/Test/baseResults/spv.460.frag.out @@ -1,5 +1,5 @@ spv.460.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 32 diff --git a/Test/baseResults/spv.460.vert.out b/Test/baseResults/spv.460.vert.out index 1f0b74f0..4feb15b9 100755 --- a/Test/baseResults/spv.460.vert.out +++ b/Test/baseResults/spv.460.vert.out @@ -1,5 +1,5 @@ spv.460.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 20 diff --git a/Test/baseResults/spv.AofA.frag.out b/Test/baseResults/spv.AofA.frag.out index 0c4d4959..f44466c5 100644 --- a/Test/baseResults/spv.AofA.frag.out +++ b/Test/baseResults/spv.AofA.frag.out @@ -1,5 +1,5 @@ spv.AofA.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 104 diff --git a/Test/baseResults/spv.GeometryShaderPassthrough.geom.out b/Test/baseResults/spv.GeometryShaderPassthrough.geom.out index 4f5cbdb3..0ddc9106 100644 --- a/Test/baseResults/spv.GeometryShaderPassthrough.geom.out +++ b/Test/baseResults/spv.GeometryShaderPassthrough.geom.out @@ -1,5 +1,5 @@ spv.GeometryShaderPassthrough.geom -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 15 diff --git a/Test/baseResults/spv.OVR_multiview.vert.out b/Test/baseResults/spv.OVR_multiview.vert.out index 3ea1b188..17d38593 100644 --- a/Test/baseResults/spv.OVR_multiview.vert.out +++ b/Test/baseResults/spv.OVR_multiview.vert.out @@ -1,5 +1,5 @@ spv.OVR_multiview.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 27 diff --git a/Test/baseResults/spv.Operations.frag.out b/Test/baseResults/spv.Operations.frag.out index 07563b3f..9b3f09ee 100755 --- a/Test/baseResults/spv.Operations.frag.out +++ b/Test/baseResults/spv.Operations.frag.out @@ -1,5 +1,5 @@ spv.Operations.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 532 diff --git a/Test/baseResults/spv.accessChain.frag.out b/Test/baseResults/spv.accessChain.frag.out index 4711997a..2f4bf3aa 100755 --- a/Test/baseResults/spv.accessChain.frag.out +++ b/Test/baseResults/spv.accessChain.frag.out @@ -1,5 +1,5 @@ spv.accessChain.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 206 diff --git a/Test/baseResults/spv.aggOps.frag.out b/Test/baseResults/spv.aggOps.frag.out index 3ac65d4b..d7142c3e 100644 --- a/Test/baseResults/spv.aggOps.frag.out +++ b/Test/baseResults/spv.aggOps.frag.out @@ -2,7 +2,7 @@ spv.aggOps.frag WARNING: 0:4: '' : all default precisions are highp; use precision statements to quiet warning, e.g.: "precision mediump int; precision highp float;" -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 215 diff --git a/Test/baseResults/spv.always-discard.frag.out b/Test/baseResults/spv.always-discard.frag.out index bc5249ef..349748f4 100644 --- a/Test/baseResults/spv.always-discard.frag.out +++ b/Test/baseResults/spv.always-discard.frag.out @@ -1,5 +1,5 @@ spv.always-discard.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 84 diff --git a/Test/baseResults/spv.always-discard2.frag.out b/Test/baseResults/spv.always-discard2.frag.out index f77bdff0..d1aff7e5 100755 --- a/Test/baseResults/spv.always-discard2.frag.out +++ b/Test/baseResults/spv.always-discard2.frag.out @@ -1,5 +1,5 @@ spv.always-discard2.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 40 diff --git a/Test/baseResults/spv.arbPostDepthCoverage.frag.out b/Test/baseResults/spv.arbPostDepthCoverage.frag.out index 7af79514..dd7a370b 100644 --- a/Test/baseResults/spv.arbPostDepthCoverage.frag.out +++ b/Test/baseResults/spv.arbPostDepthCoverage.frag.out @@ -1,5 +1,5 @@ spv.arbPostDepthCoverage.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 18 diff --git a/Test/baseResults/spv.atomic.comp.out b/Test/baseResults/spv.atomic.comp.out index 85bf2fe9..5df873d2 100755 --- a/Test/baseResults/spv.atomic.comp.out +++ b/Test/baseResults/spv.atomic.comp.out @@ -1,5 +1,5 @@ spv.atomic.comp -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 74 diff --git a/Test/baseResults/spv.atomicInt64.comp.out b/Test/baseResults/spv.atomicInt64.comp.out index 8a5b543c..8daee95c 100644 --- a/Test/baseResults/spv.atomicInt64.comp.out +++ b/Test/baseResults/spv.atomicInt64.comp.out @@ -1,5 +1,5 @@ spv.atomicInt64.comp -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 149 diff --git a/Test/baseResults/spv.barrier.vert.out b/Test/baseResults/spv.barrier.vert.out index d6df623c..5157f887 100755 --- a/Test/baseResults/spv.barrier.vert.out +++ b/Test/baseResults/spv.barrier.vert.out @@ -1,5 +1,5 @@ spv.barrier.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 24 diff --git a/Test/baseResults/spv.bitCast.frag.out b/Test/baseResults/spv.bitCast.frag.out index 95f46587..e1627450 100644 --- a/Test/baseResults/spv.bitCast.frag.out +++ b/Test/baseResults/spv.bitCast.frag.out @@ -1,5 +1,5 @@ spv.bitCast.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 172 diff --git a/Test/baseResults/spv.bool.vert.out b/Test/baseResults/spv.bool.vert.out index fe26ba5d..a8c86034 100644 --- a/Test/baseResults/spv.bool.vert.out +++ b/Test/baseResults/spv.bool.vert.out @@ -1,5 +1,5 @@ spv.bool.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 46 diff --git a/Test/baseResults/spv.boolInBlock.frag.out b/Test/baseResults/spv.boolInBlock.frag.out index 97902791..e099c729 100644 --- a/Test/baseResults/spv.boolInBlock.frag.out +++ b/Test/baseResults/spv.boolInBlock.frag.out @@ -1,5 +1,5 @@ spv.boolInBlock.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 107 diff --git a/Test/baseResults/spv.branch-return.vert.out b/Test/baseResults/spv.branch-return.vert.out index c0772560..96e07c80 100644 --- a/Test/baseResults/spv.branch-return.vert.out +++ b/Test/baseResults/spv.branch-return.vert.out @@ -1,5 +1,5 @@ spv.branch-return.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 38 diff --git a/Test/baseResults/spv.buffer.autoassign.frag.out b/Test/baseResults/spv.buffer.autoassign.frag.out index c6ef734f..fe6af824 100644 --- a/Test/baseResults/spv.buffer.autoassign.frag.out +++ b/Test/baseResults/spv.buffer.autoassign.frag.out @@ -1,5 +1,5 @@ spv.buffer.autoassign.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 50 diff --git a/Test/baseResults/spv.builtInXFB.vert.out b/Test/baseResults/spv.builtInXFB.vert.out index ef8f8d25..a1acfc4d 100755 --- a/Test/baseResults/spv.builtInXFB.vert.out +++ b/Test/baseResults/spv.builtInXFB.vert.out @@ -1,5 +1,5 @@ spv.builtInXFB.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 21 diff --git a/Test/baseResults/spv.conditionalDiscard.frag.out b/Test/baseResults/spv.conditionalDiscard.frag.out index 8f44ceb7..01c99324 100755 --- a/Test/baseResults/spv.conditionalDiscard.frag.out +++ b/Test/baseResults/spv.conditionalDiscard.frag.out @@ -1,5 +1,5 @@ spv.conditionalDiscard.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 36 diff --git a/Test/baseResults/spv.conversion.frag.out b/Test/baseResults/spv.conversion.frag.out index 41b4f77c..87956dbf 100755 --- a/Test/baseResults/spv.conversion.frag.out +++ b/Test/baseResults/spv.conversion.frag.out @@ -1,5 +1,5 @@ spv.conversion.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 455 diff --git a/Test/baseResults/spv.dataOut.frag.out b/Test/baseResults/spv.dataOut.frag.out index b59f9193..e559c5d8 100755 --- a/Test/baseResults/spv.dataOut.frag.out +++ b/Test/baseResults/spv.dataOut.frag.out @@ -1,5 +1,5 @@ spv.dataOut.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 20 diff --git a/Test/baseResults/spv.dataOutIndirect.frag.out b/Test/baseResults/spv.dataOutIndirect.frag.out index 5029c73c..d532dbc2 100755 --- a/Test/baseResults/spv.dataOutIndirect.frag.out +++ b/Test/baseResults/spv.dataOutIndirect.frag.out @@ -1,5 +1,5 @@ spv.dataOutIndirect.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 26 diff --git a/Test/baseResults/spv.dataOutIndirect.vert.out b/Test/baseResults/spv.dataOutIndirect.vert.out index ed1e706c..7fe82c13 100755 --- a/Test/baseResults/spv.dataOutIndirect.vert.out +++ b/Test/baseResults/spv.dataOutIndirect.vert.out @@ -1,7 +1,7 @@ spv.dataOutIndirect.vert WARNING: 0:3: attribute deprecated in version 130; may be removed in future release -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 38 diff --git a/Test/baseResults/spv.debugInfo.frag.out b/Test/baseResults/spv.debugInfo.frag.out index 8f63ec3f..bc62354d 100644 --- a/Test/baseResults/spv.debugInfo.frag.out +++ b/Test/baseResults/spv.debugInfo.frag.out @@ -1,5 +1,5 @@ spv.debugInfo.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 126 diff --git a/Test/baseResults/spv.deepRvalue.frag.out b/Test/baseResults/spv.deepRvalue.frag.out index 41e2cf50..ea63b178 100644 --- a/Test/baseResults/spv.deepRvalue.frag.out +++ b/Test/baseResults/spv.deepRvalue.frag.out @@ -1,5 +1,5 @@ spv.deepRvalue.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 152 diff --git a/Test/baseResults/spv.depthOut.frag.out b/Test/baseResults/spv.depthOut.frag.out index 988874b7..f195d1d7 100755 --- a/Test/baseResults/spv.depthOut.frag.out +++ b/Test/baseResults/spv.depthOut.frag.out @@ -1,5 +1,5 @@ spv.depthOut.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 15 diff --git a/Test/baseResults/spv.deviceGroup.frag.out b/Test/baseResults/spv.deviceGroup.frag.out index 3be8a8ef..ceab9d43 100755 --- a/Test/baseResults/spv.deviceGroup.frag.out +++ b/Test/baseResults/spv.deviceGroup.frag.out @@ -1,5 +1,5 @@ spv.deviceGroup.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 17 diff --git a/Test/baseResults/spv.discard-dce.frag.out b/Test/baseResults/spv.discard-dce.frag.out index 65058937..be04de52 100755 --- a/Test/baseResults/spv.discard-dce.frag.out +++ b/Test/baseResults/spv.discard-dce.frag.out @@ -1,5 +1,5 @@ spv.discard-dce.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 84 diff --git a/Test/baseResults/spv.do-simple.vert.out b/Test/baseResults/spv.do-simple.vert.out index ca48d91e..5bad7fd7 100755 --- a/Test/baseResults/spv.do-simple.vert.out +++ b/Test/baseResults/spv.do-simple.vert.out @@ -1,5 +1,5 @@ spv.do-simple.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 21 diff --git a/Test/baseResults/spv.do-while-continue-break.vert.out b/Test/baseResults/spv.do-while-continue-break.vert.out index 01550b53..ec161347 100644 --- a/Test/baseResults/spv.do-while-continue-break.vert.out +++ b/Test/baseResults/spv.do-while-continue-break.vert.out @@ -1,5 +1,5 @@ spv.do-while-continue-break.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 43 diff --git a/Test/baseResults/spv.doWhileLoop.frag.out b/Test/baseResults/spv.doWhileLoop.frag.out index 4f448033..e365dbd5 100755 --- a/Test/baseResults/spv.doWhileLoop.frag.out +++ b/Test/baseResults/spv.doWhileLoop.frag.out @@ -1,5 +1,5 @@ spv.doWhileLoop.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 34 diff --git a/Test/baseResults/spv.double.comp.out b/Test/baseResults/spv.double.comp.out index 09ee6bb1..1ba0599b 100755 --- a/Test/baseResults/spv.double.comp.out +++ b/Test/baseResults/spv.double.comp.out @@ -1,5 +1,5 @@ spv.double.comp -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 60 diff --git a/Test/baseResults/spv.drawParams.vert.out b/Test/baseResults/spv.drawParams.vert.out index b1a12a90..c3f41b8b 100755 --- a/Test/baseResults/spv.drawParams.vert.out +++ b/Test/baseResults/spv.drawParams.vert.out @@ -1,5 +1,5 @@ spv.drawParams.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 29 diff --git a/Test/baseResults/spv.earlyReturnDiscard.frag.out b/Test/baseResults/spv.earlyReturnDiscard.frag.out index a1f43993..9f2f93fd 100755 --- a/Test/baseResults/spv.earlyReturnDiscard.frag.out +++ b/Test/baseResults/spv.earlyReturnDiscard.frag.out @@ -1,5 +1,5 @@ spv.earlyReturnDiscard.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 110 diff --git a/Test/baseResults/spv.extPostDepthCoverage.frag.out b/Test/baseResults/spv.extPostDepthCoverage.frag.out index 06e1bea5..1b65772a 100644 --- a/Test/baseResults/spv.extPostDepthCoverage.frag.out +++ b/Test/baseResults/spv.extPostDepthCoverage.frag.out @@ -1,5 +1,5 @@ spv.extPostDepthCoverage.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 6 diff --git a/Test/baseResults/spv.float16.frag.out b/Test/baseResults/spv.float16.frag.out index cffd14b0..e89d8238 100644 --- a/Test/baseResults/spv.float16.frag.out +++ b/Test/baseResults/spv.float16.frag.out @@ -1,5 +1,5 @@ spv.float16.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 534 diff --git a/Test/baseResults/spv.flowControl.frag.out b/Test/baseResults/spv.flowControl.frag.out index 5bb76a98..c3c3ffc6 100755 --- a/Test/baseResults/spv.flowControl.frag.out +++ b/Test/baseResults/spv.flowControl.frag.out @@ -1,5 +1,5 @@ spv.flowControl.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 39 diff --git a/Test/baseResults/spv.for-complex-condition.vert.out b/Test/baseResults/spv.for-complex-condition.vert.out index 0c6b73bb..ff52d19b 100644 --- a/Test/baseResults/spv.for-complex-condition.vert.out +++ b/Test/baseResults/spv.for-complex-condition.vert.out @@ -1,5 +1,5 @@ spv.for-complex-condition.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 31 diff --git a/Test/baseResults/spv.for-continue-break.vert.out b/Test/baseResults/spv.for-continue-break.vert.out index d5ad7084..92828153 100644 --- a/Test/baseResults/spv.for-continue-break.vert.out +++ b/Test/baseResults/spv.for-continue-break.vert.out @@ -1,5 +1,5 @@ spv.for-continue-break.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 45 diff --git a/Test/baseResults/spv.for-nobody.vert.out b/Test/baseResults/spv.for-nobody.vert.out index 7804cd40..99f91506 100644 --- a/Test/baseResults/spv.for-nobody.vert.out +++ b/Test/baseResults/spv.for-nobody.vert.out @@ -1,5 +1,5 @@ spv.for-nobody.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 25 diff --git a/Test/baseResults/spv.for-notest.vert.out b/Test/baseResults/spv.for-notest.vert.out index da2b2b4f..c6c8d69c 100644 --- a/Test/baseResults/spv.for-notest.vert.out +++ b/Test/baseResults/spv.for-notest.vert.out @@ -1,5 +1,5 @@ spv.for-notest.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 20 diff --git a/Test/baseResults/spv.for-simple.vert.out b/Test/baseResults/spv.for-simple.vert.out index 3ac03f55..2de4e78f 100755 --- a/Test/baseResults/spv.for-simple.vert.out +++ b/Test/baseResults/spv.for-simple.vert.out @@ -1,5 +1,5 @@ spv.for-simple.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 24 diff --git a/Test/baseResults/spv.forLoop.frag.out b/Test/baseResults/spv.forLoop.frag.out index 9479e602..a52d7260 100755 --- a/Test/baseResults/spv.forLoop.frag.out +++ b/Test/baseResults/spv.forLoop.frag.out @@ -1,5 +1,5 @@ spv.forLoop.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 131 diff --git a/Test/baseResults/spv.forwardFun.frag.out b/Test/baseResults/spv.forwardFun.frag.out index de644205..2a8948db 100755 --- a/Test/baseResults/spv.forwardFun.frag.out +++ b/Test/baseResults/spv.forwardFun.frag.out @@ -1,5 +1,5 @@ spv.forwardFun.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 60 diff --git a/Test/baseResults/spv.fullyCovered.frag.out b/Test/baseResults/spv.fullyCovered.frag.out index 3e25fc82..aa3529a2 100644 --- a/Test/baseResults/spv.fullyCovered.frag.out +++ b/Test/baseResults/spv.fullyCovered.frag.out @@ -1,5 +1,5 @@ spv.fullyCovered.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 18 diff --git a/Test/baseResults/spv.functionCall.frag.out b/Test/baseResults/spv.functionCall.frag.out index 5947a9d3..a5c58dab 100755 --- a/Test/baseResults/spv.functionCall.frag.out +++ b/Test/baseResults/spv.functionCall.frag.out @@ -3,7 +3,7 @@ WARNING: 0:3: varying deprecated in version 130; may be removed in future releas WARNING: 0:4: varying deprecated in version 130; may be removed in future release WARNING: 0:5: varying deprecated in version 130; may be removed in future release -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 76 diff --git a/Test/baseResults/spv.functionNestedOpaque.vert.out b/Test/baseResults/spv.functionNestedOpaque.vert.out index 47cf8794..e6a45e3c 100644 --- a/Test/baseResults/spv.functionNestedOpaque.vert.out +++ b/Test/baseResults/spv.functionNestedOpaque.vert.out @@ -1,5 +1,5 @@ spv.functionNestedOpaque.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 39 diff --git a/Test/baseResults/spv.functionSemantics.frag.out b/Test/baseResults/spv.functionSemantics.frag.out index b2411e59..402a6669 100755 --- a/Test/baseResults/spv.functionSemantics.frag.out +++ b/Test/baseResults/spv.functionSemantics.frag.out @@ -1,5 +1,5 @@ spv.functionSemantics.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 156 diff --git a/Test/baseResults/spv.glFragColor.frag.out b/Test/baseResults/spv.glFragColor.frag.out index 856a18b0..4e890563 100755 --- a/Test/baseResults/spv.glFragColor.frag.out +++ b/Test/baseResults/spv.glFragColor.frag.out @@ -1,5 +1,5 @@ spv.glFragColor.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 12 diff --git a/Test/baseResults/spv.glsl.register.autoassign.frag.out b/Test/baseResults/spv.glsl.register.autoassign.frag.out index eb6ec76f..bb72deed 100644 --- a/Test/baseResults/spv.glsl.register.autoassign.frag.out +++ b/Test/baseResults/spv.glsl.register.autoassign.frag.out @@ -1,5 +1,5 @@ spv.glsl.register.autoassign.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 142 diff --git a/Test/baseResults/spv.glsl.register.noautoassign.frag.out b/Test/baseResults/spv.glsl.register.noautoassign.frag.out index 4e245a1d..d145b7bc 100644 --- a/Test/baseResults/spv.glsl.register.noautoassign.frag.out +++ b/Test/baseResults/spv.glsl.register.noautoassign.frag.out @@ -1,5 +1,5 @@ spv.glsl.register.noautoassign.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 142 diff --git a/Test/baseResults/spv.hlslDebugInfo.frag.out b/Test/baseResults/spv.hlslDebugInfo.frag.out index b99849dd..71355ea6 100644 --- a/Test/baseResults/spv.hlslDebugInfo.frag.out +++ b/Test/baseResults/spv.hlslDebugInfo.frag.out @@ -1,5 +1,5 @@ spv.hlslDebugInfo.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 19 diff --git a/Test/baseResults/spv.hlslOffsets.vert.out b/Test/baseResults/spv.hlslOffsets.vert.out index 1f27966b..94728939 100644 --- a/Test/baseResults/spv.hlslOffsets.vert.out +++ b/Test/baseResults/spv.hlslOffsets.vert.out @@ -17,7 +17,7 @@ Shader version: 450 0:? Linker Objects 0:? 'anon@0' (layout( column_major std430) buffer block{layout( column_major std430) buffer highp float m0, layout( column_major std430) buffer highp 3-component vector of float m4, layout( column_major std430) buffer highp float m16, layout( column_major std430 offset=20) buffer highp 3-component vector of float m20, layout( column_major std430) buffer highp 3-component vector of float m32, layout( column_major std430) buffer highp 2-component vector of float m48, layout( column_major std430) buffer highp 2-component vector of float m56, layout( column_major std430) buffer highp float m64, layout( column_major std430) buffer highp 2-component vector of float m68, layout( column_major std430) buffer highp float m76, layout( column_major std430) buffer highp float m80, layout( column_major std430 offset=88) buffer highp 2-component vector of float m88, layout( column_major std430) buffer highp 2-component vector of float m96, layout( column_major std430) buffer 2-component vector of double m112}) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 14 diff --git a/Test/baseResults/spv.image.frag.out b/Test/baseResults/spv.image.frag.out index 09e5295e..668bbbe6 100644 --- a/Test/baseResults/spv.image.frag.out +++ b/Test/baseResults/spv.image.frag.out @@ -1,5 +1,5 @@ spv.image.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 376 diff --git a/Test/baseResults/spv.imageLoadStoreLod.frag.out b/Test/baseResults/spv.imageLoadStoreLod.frag.out index f0990435..7f40d206 100644 --- a/Test/baseResults/spv.imageLoadStoreLod.frag.out +++ b/Test/baseResults/spv.imageLoadStoreLod.frag.out @@ -1,5 +1,5 @@ spv.imageLoadStoreLod.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 82 diff --git a/Test/baseResults/spv.int16.frag.out b/Test/baseResults/spv.int16.frag.out index 7f6bfb5a..c0e0ee54 100644 --- a/Test/baseResults/spv.int16.frag.out +++ b/Test/baseResults/spv.int16.frag.out @@ -1,5 +1,5 @@ spv.int16.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 561 diff --git a/Test/baseResults/spv.int64.frag.out b/Test/baseResults/spv.int64.frag.out index 25befe39..4353efe1 100644 --- a/Test/baseResults/spv.int64.frag.out +++ b/Test/baseResults/spv.int64.frag.out @@ -1,5 +1,5 @@ spv.int64.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 480 diff --git a/Test/baseResults/spv.intOps.vert.out b/Test/baseResults/spv.intOps.vert.out index c586e285..bd3db526 100644 --- a/Test/baseResults/spv.intOps.vert.out +++ b/Test/baseResults/spv.intOps.vert.out @@ -1,5 +1,5 @@ spv.intOps.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 268 diff --git a/Test/baseResults/spv.interpOps.frag.out b/Test/baseResults/spv.interpOps.frag.out index 98986eb4..fa693d23 100644 --- a/Test/baseResults/spv.interpOps.frag.out +++ b/Test/baseResults/spv.interpOps.frag.out @@ -1,5 +1,5 @@ spv.interpOps.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 100 diff --git a/Test/baseResults/spv.layoutNested.vert.out b/Test/baseResults/spv.layoutNested.vert.out index a88c809f..f989d1b9 100644 --- a/Test/baseResults/spv.layoutNested.vert.out +++ b/Test/baseResults/spv.layoutNested.vert.out @@ -1,5 +1,5 @@ spv.layoutNested.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 66 diff --git a/Test/baseResults/spv.length.frag.out b/Test/baseResults/spv.length.frag.out index 22424e17..0eaba5d1 100755 --- a/Test/baseResults/spv.length.frag.out +++ b/Test/baseResults/spv.length.frag.out @@ -1,5 +1,5 @@ spv.length.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 33 diff --git a/Test/baseResults/spv.localAggregates.frag.out b/Test/baseResults/spv.localAggregates.frag.out index f08a8a66..3b459957 100755 --- a/Test/baseResults/spv.localAggregates.frag.out +++ b/Test/baseResults/spv.localAggregates.frag.out @@ -1,5 +1,5 @@ spv.localAggregates.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 136 diff --git a/Test/baseResults/spv.loops.frag.out b/Test/baseResults/spv.loops.frag.out index 901ce3bf..225cf3b3 100755 --- a/Test/baseResults/spv.loops.frag.out +++ b/Test/baseResults/spv.loops.frag.out @@ -1,5 +1,5 @@ spv.loops.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 725 diff --git a/Test/baseResults/spv.loopsArtificial.frag.out b/Test/baseResults/spv.loopsArtificial.frag.out index d78f6823..28696222 100755 --- a/Test/baseResults/spv.loopsArtificial.frag.out +++ b/Test/baseResults/spv.loopsArtificial.frag.out @@ -1,5 +1,5 @@ spv.loopsArtificial.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 158 diff --git a/Test/baseResults/spv.matFun.vert.out b/Test/baseResults/spv.matFun.vert.out index a06b54fe..7c9db1b9 100755 --- a/Test/baseResults/spv.matFun.vert.out +++ b/Test/baseResults/spv.matFun.vert.out @@ -1,5 +1,5 @@ spv.matFun.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 103 diff --git a/Test/baseResults/spv.matrix.frag.out b/Test/baseResults/spv.matrix.frag.out index ea2fdec7..27800a59 100644 --- a/Test/baseResults/spv.matrix.frag.out +++ b/Test/baseResults/spv.matrix.frag.out @@ -1,5 +1,5 @@ spv.matrix.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 286 diff --git a/Test/baseResults/spv.matrix2.frag.out b/Test/baseResults/spv.matrix2.frag.out index e5d5667e..b5259990 100644 --- a/Test/baseResults/spv.matrix2.frag.out +++ b/Test/baseResults/spv.matrix2.frag.out @@ -1,5 +1,5 @@ spv.matrix2.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 221 diff --git a/Test/baseResults/spv.memoryQualifier.frag.out b/Test/baseResults/spv.memoryQualifier.frag.out index 7ec5fd56..a8d64c70 100644 --- a/Test/baseResults/spv.memoryQualifier.frag.out +++ b/Test/baseResults/spv.memoryQualifier.frag.out @@ -1,5 +1,5 @@ spv.memoryQualifier.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 97 diff --git a/Test/baseResults/spv.merge-unreachable.frag.out b/Test/baseResults/spv.merge-unreachable.frag.out index 7e1334fa..9d7e6dd7 100644 --- a/Test/baseResults/spv.merge-unreachable.frag.out +++ b/Test/baseResults/spv.merge-unreachable.frag.out @@ -1,5 +1,5 @@ spv.merge-unreachable.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 25 diff --git a/Test/baseResults/spv.multiStruct.comp.out b/Test/baseResults/spv.multiStruct.comp.out index 4d589c5d..738691c5 100755 --- a/Test/baseResults/spv.multiStruct.comp.out +++ b/Test/baseResults/spv.multiStruct.comp.out @@ -1,5 +1,5 @@ spv.multiStruct.comp -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 161 diff --git a/Test/baseResults/spv.multiStructFuncall.frag.out b/Test/baseResults/spv.multiStructFuncall.frag.out index 8204301c..80d3408d 100755 --- a/Test/baseResults/spv.multiStructFuncall.frag.out +++ b/Test/baseResults/spv.multiStructFuncall.frag.out @@ -1,5 +1,5 @@ spv.multiStructFuncall.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 63 diff --git a/Test/baseResults/spv.multiView.frag.out b/Test/baseResults/spv.multiView.frag.out index 87ddd1bc..73e922b4 100755 --- a/Test/baseResults/spv.multiView.frag.out +++ b/Test/baseResults/spv.multiView.frag.out @@ -1,5 +1,5 @@ spv.multiView.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 17 diff --git a/Test/baseResults/spv.multiviewPerViewAttributes.tesc.out b/Test/baseResults/spv.multiviewPerViewAttributes.tesc.out index e77aed6d..7c0b3b86 100644 --- a/Test/baseResults/spv.multiviewPerViewAttributes.tesc.out +++ b/Test/baseResults/spv.multiviewPerViewAttributes.tesc.out @@ -1,5 +1,5 @@ spv.multiviewPerViewAttributes.tesc -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 37 diff --git a/Test/baseResults/spv.multiviewPerViewAttributes.vert.out b/Test/baseResults/spv.multiviewPerViewAttributes.vert.out index 5ef34420..e4cab44b 100644 --- a/Test/baseResults/spv.multiviewPerViewAttributes.vert.out +++ b/Test/baseResults/spv.multiviewPerViewAttributes.vert.out @@ -1,5 +1,5 @@ spv.multiviewPerViewAttributes.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 29 diff --git a/Test/baseResults/spv.newTexture.frag.out b/Test/baseResults/spv.newTexture.frag.out index 3d26b04a..048370a4 100755 --- a/Test/baseResults/spv.newTexture.frag.out +++ b/Test/baseResults/spv.newTexture.frag.out @@ -1,5 +1,5 @@ spv.newTexture.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 284 diff --git a/Test/baseResults/spv.noBuiltInLoc.vert.out b/Test/baseResults/spv.noBuiltInLoc.vert.out index d5327a56..928780e8 100644 --- a/Test/baseResults/spv.noBuiltInLoc.vert.out +++ b/Test/baseResults/spv.noBuiltInLoc.vert.out @@ -1,5 +1,5 @@ spv.noBuiltInLoc.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 33 diff --git a/Test/baseResults/spv.noDeadDecorations.vert.out b/Test/baseResults/spv.noDeadDecorations.vert.out index ef9963db..9db41093 100644 --- a/Test/baseResults/spv.noDeadDecorations.vert.out +++ b/Test/baseResults/spv.noDeadDecorations.vert.out @@ -1,5 +1,5 @@ spv.noDeadDecorations.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 32 diff --git a/Test/baseResults/spv.noWorkgroup.comp.out b/Test/baseResults/spv.noWorkgroup.comp.out index 4e5cada5..e34a6b5f 100755 --- a/Test/baseResults/spv.noWorkgroup.comp.out +++ b/Test/baseResults/spv.noWorkgroup.comp.out @@ -1,5 +1,5 @@ spv.noWorkgroup.comp -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 12 diff --git a/Test/baseResults/spv.nonSquare.vert.out b/Test/baseResults/spv.nonSquare.vert.out index c84fbf12..4c335eeb 100755 --- a/Test/baseResults/spv.nonSquare.vert.out +++ b/Test/baseResults/spv.nonSquare.vert.out @@ -1,5 +1,5 @@ spv.nonSquare.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 90 diff --git a/Test/baseResults/spv.offsets.frag.out b/Test/baseResults/spv.offsets.frag.out index e60027f2..8fd894f1 100755 --- a/Test/baseResults/spv.offsets.frag.out +++ b/Test/baseResults/spv.offsets.frag.out @@ -1,5 +1,5 @@ spv.offsets.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 15 diff --git a/Test/baseResults/spv.paramMemory.frag.out b/Test/baseResults/spv.paramMemory.frag.out index bd8e8d4a..927d56ac 100755 --- a/Test/baseResults/spv.paramMemory.frag.out +++ b/Test/baseResults/spv.paramMemory.frag.out @@ -1,5 +1,5 @@ spv.paramMemory.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 69 diff --git a/Test/baseResults/spv.precise.tesc.out b/Test/baseResults/spv.precise.tesc.out index 18d28d9b..bd1bf928 100644 --- a/Test/baseResults/spv.precise.tesc.out +++ b/Test/baseResults/spv.precise.tesc.out @@ -1,5 +1,5 @@ spv.precise.tesc -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 72 diff --git a/Test/baseResults/spv.precise.tese.out b/Test/baseResults/spv.precise.tese.out index abc9badf..ffdbc892 100644 --- a/Test/baseResults/spv.precise.tese.out +++ b/Test/baseResults/spv.precise.tese.out @@ -1,5 +1,5 @@ spv.precise.tese -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 119 diff --git a/Test/baseResults/spv.precision.frag.out b/Test/baseResults/spv.precision.frag.out index 1ddfb800..710c6395 100755 --- a/Test/baseResults/spv.precision.frag.out +++ b/Test/baseResults/spv.precision.frag.out @@ -1,5 +1,5 @@ spv.precision.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 127 diff --git a/Test/baseResults/spv.precisionNonESSamp.frag.out b/Test/baseResults/spv.precisionNonESSamp.frag.out index c20770c7..e4235bd6 100755 --- a/Test/baseResults/spv.precisionNonESSamp.frag.out +++ b/Test/baseResults/spv.precisionNonESSamp.frag.out @@ -1,5 +1,5 @@ spv.precisionNonESSamp.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 47 diff --git a/Test/baseResults/spv.prepost.frag.out b/Test/baseResults/spv.prepost.frag.out index 14c2b97e..56ee4589 100755 --- a/Test/baseResults/spv.prepost.frag.out +++ b/Test/baseResults/spv.prepost.frag.out @@ -1,5 +1,5 @@ spv.prepost.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 94 diff --git a/Test/baseResults/spv.pushConstant.vert.out b/Test/baseResults/spv.pushConstant.vert.out index 9b6cbad6..591d6931 100644 --- a/Test/baseResults/spv.pushConstant.vert.out +++ b/Test/baseResults/spv.pushConstant.vert.out @@ -1,5 +1,5 @@ spv.pushConstant.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 35 diff --git a/Test/baseResults/spv.pushConstantAnon.vert.out b/Test/baseResults/spv.pushConstantAnon.vert.out index eef8e8ca..14af8032 100755 --- a/Test/baseResults/spv.pushConstantAnon.vert.out +++ b/Test/baseResults/spv.pushConstantAnon.vert.out @@ -1,5 +1,5 @@ spv.pushConstantAnon.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 38 diff --git a/Test/baseResults/spv.qualifiers.vert.out b/Test/baseResults/spv.qualifiers.vert.out index 461c12ca..fca304dd 100755 --- a/Test/baseResults/spv.qualifiers.vert.out +++ b/Test/baseResults/spv.qualifiers.vert.out @@ -1,5 +1,5 @@ spv.qualifiers.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 21 diff --git a/Test/baseResults/spv.queryL.frag.out b/Test/baseResults/spv.queryL.frag.out index 8d3ec318..70e677bb 100755 --- a/Test/baseResults/spv.queryL.frag.out +++ b/Test/baseResults/spv.queryL.frag.out @@ -1,5 +1,5 @@ spv.queryL.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 224 diff --git a/Test/baseResults/spv.register.autoassign-2.frag.out b/Test/baseResults/spv.register.autoassign-2.frag.out index c1939c64..6bc173b5 100644 --- a/Test/baseResults/spv.register.autoassign-2.frag.out +++ b/Test/baseResults/spv.register.autoassign-2.frag.out @@ -1,5 +1,5 @@ spv.register.autoassign-2.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 47 diff --git a/Test/baseResults/spv.register.autoassign.frag.out b/Test/baseResults/spv.register.autoassign.frag.out index e465148d..cf4dad73 100644 --- a/Test/baseResults/spv.register.autoassign.frag.out +++ b/Test/baseResults/spv.register.autoassign.frag.out @@ -1,5 +1,5 @@ spv.register.autoassign.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 155 diff --git a/Test/baseResults/spv.register.noautoassign.frag.out b/Test/baseResults/spv.register.noautoassign.frag.out index ac1f3bbf..da53f58e 100644 --- a/Test/baseResults/spv.register.noautoassign.frag.out +++ b/Test/baseResults/spv.register.noautoassign.frag.out @@ -1,5 +1,5 @@ spv.register.noautoassign.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 155 diff --git a/Test/baseResults/spv.register.subpass.frag.out b/Test/baseResults/spv.register.subpass.frag.out index 4fc4f5f5..3072f965 100644 --- a/Test/baseResults/spv.register.subpass.frag.out +++ b/Test/baseResults/spv.register.subpass.frag.out @@ -1,5 +1,5 @@ spv.register.subpass.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 40 diff --git a/Test/baseResults/spv.rw.autoassign.frag.out b/Test/baseResults/spv.rw.autoassign.frag.out index 52f49baa..e234dc6e 100644 --- a/Test/baseResults/spv.rw.autoassign.frag.out +++ b/Test/baseResults/spv.rw.autoassign.frag.out @@ -1,5 +1,5 @@ spv.rw.autoassign.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 42 diff --git a/Test/baseResults/spv.sample.frag.out b/Test/baseResults/spv.sample.frag.out index 290c3ae5..306e635e 100755 --- a/Test/baseResults/spv.sample.frag.out +++ b/Test/baseResults/spv.sample.frag.out @@ -1,5 +1,5 @@ spv.sample.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 13 diff --git a/Test/baseResults/spv.sampleId.frag.out b/Test/baseResults/spv.sampleId.frag.out index 70c5b2ce..666e751a 100755 --- a/Test/baseResults/spv.sampleId.frag.out +++ b/Test/baseResults/spv.sampleId.frag.out @@ -1,5 +1,5 @@ spv.sampleId.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 26 diff --git a/Test/baseResults/spv.sampleMaskOverrideCoverage.frag.out b/Test/baseResults/spv.sampleMaskOverrideCoverage.frag.out index 80addb8b..5ef07933 100644 --- a/Test/baseResults/spv.sampleMaskOverrideCoverage.frag.out +++ b/Test/baseResults/spv.sampleMaskOverrideCoverage.frag.out @@ -1,5 +1,5 @@ spv.sampleMaskOverrideCoverage.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 20 diff --git a/Test/baseResults/spv.samplePosition.frag.out b/Test/baseResults/spv.samplePosition.frag.out index 164e9c4d..ebd963bf 100755 --- a/Test/baseResults/spv.samplePosition.frag.out +++ b/Test/baseResults/spv.samplePosition.frag.out @@ -1,5 +1,5 @@ spv.samplePosition.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 30 diff --git a/Test/baseResults/spv.separate.frag.out b/Test/baseResults/spv.separate.frag.out index 9f6de953..3ef80132 100644 --- a/Test/baseResults/spv.separate.frag.out +++ b/Test/baseResults/spv.separate.frag.out @@ -1,5 +1,5 @@ spv.separate.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 319 diff --git a/Test/baseResults/spv.set.vert.out b/Test/baseResults/spv.set.vert.out index 0bb217c3..a5a83630 100755 --- a/Test/baseResults/spv.set.vert.out +++ b/Test/baseResults/spv.set.vert.out @@ -1,5 +1,5 @@ spv.set.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 22 diff --git a/Test/baseResults/spv.shaderBallot.comp.out b/Test/baseResults/spv.shaderBallot.comp.out index 833c9ed2..ec85d70e 100644 --- a/Test/baseResults/spv.shaderBallot.comp.out +++ b/Test/baseResults/spv.shaderBallot.comp.out @@ -1,5 +1,5 @@ spv.shaderBallot.comp -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 298 diff --git a/Test/baseResults/spv.shaderBallotAMD.comp.out b/Test/baseResults/spv.shaderBallotAMD.comp.out index d33f053e..aca5ba6e 100644 --- a/Test/baseResults/spv.shaderBallotAMD.comp.out +++ b/Test/baseResults/spv.shaderBallotAMD.comp.out @@ -1,5 +1,5 @@ spv.shaderBallotAMD.comp -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 1048 diff --git a/Test/baseResults/spv.shaderDrawParams.vert.out b/Test/baseResults/spv.shaderDrawParams.vert.out index 2bf7d629..0fb27ad3 100644 --- a/Test/baseResults/spv.shaderDrawParams.vert.out +++ b/Test/baseResults/spv.shaderDrawParams.vert.out @@ -1,5 +1,5 @@ spv.shaderDrawParams.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 53 diff --git a/Test/baseResults/spv.shaderFragMaskAMD.frag.out b/Test/baseResults/spv.shaderFragMaskAMD.frag.out index dff28bc2..a703082c 100644 --- a/Test/baseResults/spv.shaderFragMaskAMD.frag.out +++ b/Test/baseResults/spv.shaderFragMaskAMD.frag.out @@ -1,5 +1,5 @@ spv.shaderFragMaskAMD.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 80 diff --git a/Test/baseResults/spv.shaderGroupVote.comp.out b/Test/baseResults/spv.shaderGroupVote.comp.out index aefcea4d..2b7e13a9 100644 --- a/Test/baseResults/spv.shaderGroupVote.comp.out +++ b/Test/baseResults/spv.shaderGroupVote.comp.out @@ -1,5 +1,5 @@ spv.shaderGroupVote.comp -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 33 diff --git a/Test/baseResults/spv.shaderStencilExport.frag.out b/Test/baseResults/spv.shaderStencilExport.frag.out index 4afd5376..5267ed99 100644 --- a/Test/baseResults/spv.shaderStencilExport.frag.out +++ b/Test/baseResults/spv.shaderStencilExport.frag.out @@ -1,5 +1,5 @@ spv.shaderStencilExport.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 10 diff --git a/Test/baseResults/spv.shiftOps.frag.out b/Test/baseResults/spv.shiftOps.frag.out index 836ee719..22bcaf3b 100644 --- a/Test/baseResults/spv.shiftOps.frag.out +++ b/Test/baseResults/spv.shiftOps.frag.out @@ -1,5 +1,5 @@ spv.shiftOps.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 38 diff --git a/Test/baseResults/spv.shortCircuit.frag.out b/Test/baseResults/spv.shortCircuit.frag.out index c5665eaa..9ba472ad 100644 --- a/Test/baseResults/spv.shortCircuit.frag.out +++ b/Test/baseResults/spv.shortCircuit.frag.out @@ -1,5 +1,5 @@ spv.shortCircuit.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 147 diff --git a/Test/baseResults/spv.simpleFunctionCall.frag.out b/Test/baseResults/spv.simpleFunctionCall.frag.out index b7902eea..0ee0f90b 100755 --- a/Test/baseResults/spv.simpleFunctionCall.frag.out +++ b/Test/baseResults/spv.simpleFunctionCall.frag.out @@ -1,5 +1,5 @@ spv.simpleFunctionCall.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 19 diff --git a/Test/baseResults/spv.simpleMat.vert.out b/Test/baseResults/spv.simpleMat.vert.out index 793de268..b5799062 100755 --- a/Test/baseResults/spv.simpleMat.vert.out +++ b/Test/baseResults/spv.simpleMat.vert.out @@ -1,7 +1,7 @@ spv.simpleMat.vert WARNING: 0:3: varying deprecated in version 130; may be removed in future release -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 39 diff --git a/Test/baseResults/spv.sparseTexture.frag.out b/Test/baseResults/spv.sparseTexture.frag.out index bc007cf1..674f11c5 100644 --- a/Test/baseResults/spv.sparseTexture.frag.out +++ b/Test/baseResults/spv.sparseTexture.frag.out @@ -1,5 +1,5 @@ spv.sparseTexture.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 438 diff --git a/Test/baseResults/spv.sparseTextureClamp.frag.out b/Test/baseResults/spv.sparseTextureClamp.frag.out index 2ff58a9a..e9e662f6 100644 --- a/Test/baseResults/spv.sparseTextureClamp.frag.out +++ b/Test/baseResults/spv.sparseTextureClamp.frag.out @@ -1,5 +1,5 @@ spv.sparseTextureClamp.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 360 diff --git a/Test/baseResults/spv.specConst.vert.out b/Test/baseResults/spv.specConst.vert.out index afdb0c1e..181d02a6 100755 --- a/Test/baseResults/spv.specConst.vert.out +++ b/Test/baseResults/spv.specConst.vert.out @@ -1,5 +1,5 @@ spv.specConst.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 27 diff --git a/Test/baseResults/spv.specConstant.comp.out b/Test/baseResults/spv.specConstant.comp.out index 653af723..4f4897bf 100644 --- a/Test/baseResults/spv.specConstant.comp.out +++ b/Test/baseResults/spv.specConstant.comp.out @@ -1,5 +1,5 @@ spv.specConstant.comp -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 27 diff --git a/Test/baseResults/spv.specConstant.vert.out b/Test/baseResults/spv.specConstant.vert.out index e4df66fc..a8fc861c 100644 --- a/Test/baseResults/spv.specConstant.vert.out +++ b/Test/baseResults/spv.specConstant.vert.out @@ -1,5 +1,5 @@ spv.specConstant.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 81 diff --git a/Test/baseResults/spv.specConstantComposite.vert.out b/Test/baseResults/spv.specConstantComposite.vert.out index 6680f66b..e3cd6819 100644 --- a/Test/baseResults/spv.specConstantComposite.vert.out +++ b/Test/baseResults/spv.specConstantComposite.vert.out @@ -1,5 +1,5 @@ spv.specConstantComposite.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 43 diff --git a/Test/baseResults/spv.specConstantOperations.vert.out b/Test/baseResults/spv.specConstantOperations.vert.out index 348d9580..2615eab4 100644 --- a/Test/baseResults/spv.specConstantOperations.vert.out +++ b/Test/baseResults/spv.specConstantOperations.vert.out @@ -1,5 +1,5 @@ spv.specConstantOperations.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 162 diff --git a/Test/baseResults/spv.ssbo.autoassign.frag.out b/Test/baseResults/spv.ssbo.autoassign.frag.out index 6fcaad4e..d5e37cb3 100644 --- a/Test/baseResults/spv.ssbo.autoassign.frag.out +++ b/Test/baseResults/spv.ssbo.autoassign.frag.out @@ -1,5 +1,5 @@ spv.ssbo.autoassign.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 99 diff --git a/Test/baseResults/spv.ssboAlias.frag.out b/Test/baseResults/spv.ssboAlias.frag.out index cb087b55..68c2d6a0 100755 --- a/Test/baseResults/spv.ssboAlias.frag.out +++ b/Test/baseResults/spv.ssboAlias.frag.out @@ -1,5 +1,5 @@ spv.ssboAlias.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 46 diff --git a/Test/baseResults/spv.stereoViewRendering.tesc.out b/Test/baseResults/spv.stereoViewRendering.tesc.out index 0fe58913..b7dfa636 100644 --- a/Test/baseResults/spv.stereoViewRendering.tesc.out +++ b/Test/baseResults/spv.stereoViewRendering.tesc.out @@ -1,5 +1,5 @@ spv.stereoViewRendering.tesc -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 38 diff --git a/Test/baseResults/spv.stereoViewRendering.vert.out b/Test/baseResults/spv.stereoViewRendering.vert.out index 18ecc0f8..31c6e216 100644 --- a/Test/baseResults/spv.stereoViewRendering.vert.out +++ b/Test/baseResults/spv.stereoViewRendering.vert.out @@ -1,5 +1,5 @@ spv.stereoViewRendering.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 27 diff --git a/Test/baseResults/spv.storageBuffer.vert.out b/Test/baseResults/spv.storageBuffer.vert.out index 12bb5c7f..09aef0d8 100755 --- a/Test/baseResults/spv.storageBuffer.vert.out +++ b/Test/baseResults/spv.storageBuffer.vert.out @@ -1,5 +1,5 @@ spv.storageBuffer.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 31 diff --git a/Test/baseResults/spv.structAssignment.frag.out b/Test/baseResults/spv.structAssignment.frag.out index 02e315c8..b27d4f1b 100755 --- a/Test/baseResults/spv.structAssignment.frag.out +++ b/Test/baseResults/spv.structAssignment.frag.out @@ -2,7 +2,7 @@ spv.structAssignment.frag WARNING: 0:6: '' : all default precisions are highp; use precision statements to quiet warning, e.g.: "precision mediump int; precision highp float;" -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 50 diff --git a/Test/baseResults/spv.structDeref.frag.out b/Test/baseResults/spv.structDeref.frag.out index 3d086ad4..d1f46997 100755 --- a/Test/baseResults/spv.structDeref.frag.out +++ b/Test/baseResults/spv.structDeref.frag.out @@ -1,5 +1,5 @@ spv.structDeref.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 123 diff --git a/Test/baseResults/spv.structure.frag.out b/Test/baseResults/spv.structure.frag.out index aff943b1..3238b331 100755 --- a/Test/baseResults/spv.structure.frag.out +++ b/Test/baseResults/spv.structure.frag.out @@ -1,5 +1,5 @@ spv.structure.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 60 diff --git a/Test/baseResults/spv.subpass.frag.out b/Test/baseResults/spv.subpass.frag.out index e0a839a3..f89c795a 100644 --- a/Test/baseResults/spv.subpass.frag.out +++ b/Test/baseResults/spv.subpass.frag.out @@ -1,5 +1,5 @@ spv.subpass.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 67 diff --git a/Test/baseResults/spv.switch.frag.out b/Test/baseResults/spv.switch.frag.out index 854f1741..d9eec0db 100755 --- a/Test/baseResults/spv.switch.frag.out +++ b/Test/baseResults/spv.switch.frag.out @@ -3,7 +3,7 @@ WARNING: 0:121: 'switch' : last case/default label not followed by statements WARNING: 0:134: 'switch' : last case/default label not followed by statements WARNING: 0:139: 'switch' : last case/default label not followed by statements -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 269 diff --git a/Test/baseResults/spv.swizzle.frag.out b/Test/baseResults/spv.swizzle.frag.out index 335cc3b5..df7bcaf5 100755 --- a/Test/baseResults/spv.swizzle.frag.out +++ b/Test/baseResults/spv.swizzle.frag.out @@ -1,5 +1,5 @@ spv.swizzle.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 108 diff --git a/Test/baseResults/spv.swizzleInversion.frag.out b/Test/baseResults/spv.swizzleInversion.frag.out index 494f1af6..ada29a63 100755 --- a/Test/baseResults/spv.swizzleInversion.frag.out +++ b/Test/baseResults/spv.swizzleInversion.frag.out @@ -1,5 +1,5 @@ spv.swizzleInversion.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 46 diff --git a/Test/baseResults/spv.test.frag.out b/Test/baseResults/spv.test.frag.out index 794a4b69..ea868f8b 100644 --- a/Test/baseResults/spv.test.frag.out +++ b/Test/baseResults/spv.test.frag.out @@ -1,5 +1,5 @@ spv.test.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 55 diff --git a/Test/baseResults/spv.test.vert.out b/Test/baseResults/spv.test.vert.out index a7fad2c9..54fb81fd 100644 --- a/Test/baseResults/spv.test.vert.out +++ b/Test/baseResults/spv.test.vert.out @@ -1,7 +1,7 @@ spv.test.vert WARNING: 0:5: attribute deprecated in version 130; may be removed in future release -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 24 diff --git a/Test/baseResults/spv.texture.frag.out b/Test/baseResults/spv.texture.frag.out index 93599753..1a601f7a 100755 --- a/Test/baseResults/spv.texture.frag.out +++ b/Test/baseResults/spv.texture.frag.out @@ -3,7 +3,7 @@ WARNING: 0:10: varying deprecated in version 130; may be removed in future relea WARNING: 0:11: varying deprecated in version 130; may be removed in future release WARNING: 0:12: varying deprecated in version 130; may be removed in future release -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 305 diff --git a/Test/baseResults/spv.texture.sampler.transform.frag.out b/Test/baseResults/spv.texture.sampler.transform.frag.out index a7600f09..d33ad592 100644 --- a/Test/baseResults/spv.texture.sampler.transform.frag.out +++ b/Test/baseResults/spv.texture.sampler.transform.frag.out @@ -1,5 +1,5 @@ spv.texture.sampler.transform.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 20 diff --git a/Test/baseResults/spv.texture.vert.out b/Test/baseResults/spv.texture.vert.out index dc53eb43..9f94f242 100755 --- a/Test/baseResults/spv.texture.vert.out +++ b/Test/baseResults/spv.texture.vert.out @@ -1,5 +1,5 @@ spv.texture.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 150 diff --git a/Test/baseResults/spv.textureBuffer.vert.out b/Test/baseResults/spv.textureBuffer.vert.out index 9d0c4fb1..3850ce10 100755 --- a/Test/baseResults/spv.textureBuffer.vert.out +++ b/Test/baseResults/spv.textureBuffer.vert.out @@ -1,5 +1,5 @@ spv.textureBuffer.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 42 diff --git a/Test/baseResults/spv.textureGatherBiasLod.frag.out b/Test/baseResults/spv.textureGatherBiasLod.frag.out index 24281002..cc314918 100644 --- a/Test/baseResults/spv.textureGatherBiasLod.frag.out +++ b/Test/baseResults/spv.textureGatherBiasLod.frag.out @@ -1,5 +1,5 @@ spv.textureGatherBiasLod.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 298 diff --git a/Test/baseResults/spv.types.frag.out b/Test/baseResults/spv.types.frag.out index b145a6d6..704561ac 100755 --- a/Test/baseResults/spv.types.frag.out +++ b/Test/baseResults/spv.types.frag.out @@ -1,5 +1,5 @@ spv.types.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 260 diff --git a/Test/baseResults/spv.uint.frag.out b/Test/baseResults/spv.uint.frag.out index dc85ae6e..9e1ccb1f 100755 --- a/Test/baseResults/spv.uint.frag.out +++ b/Test/baseResults/spv.uint.frag.out @@ -1,5 +1,5 @@ spv.uint.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 213 diff --git a/Test/baseResults/spv.uniformArray.frag.out b/Test/baseResults/spv.uniformArray.frag.out index 4732de3f..f355e2cf 100644 --- a/Test/baseResults/spv.uniformArray.frag.out +++ b/Test/baseResults/spv.uniformArray.frag.out @@ -1,5 +1,5 @@ spv.uniformArray.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 53 diff --git a/Test/baseResults/spv.variableArrayIndex.frag.out b/Test/baseResults/spv.variableArrayIndex.frag.out index 4cbd498b..fd93913d 100755 --- a/Test/baseResults/spv.variableArrayIndex.frag.out +++ b/Test/baseResults/spv.variableArrayIndex.frag.out @@ -1,5 +1,5 @@ spv.variableArrayIndex.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 93 diff --git a/Test/baseResults/spv.varyingArray.frag.out b/Test/baseResults/spv.varyingArray.frag.out index c9035165..bc0979da 100755 --- a/Test/baseResults/spv.varyingArray.frag.out +++ b/Test/baseResults/spv.varyingArray.frag.out @@ -1,5 +1,5 @@ spv.varyingArray.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 61 diff --git a/Test/baseResults/spv.varyingArrayIndirect.frag.out b/Test/baseResults/spv.varyingArrayIndirect.frag.out index 07ddd68f..f7d69438 100755 --- a/Test/baseResults/spv.varyingArrayIndirect.frag.out +++ b/Test/baseResults/spv.varyingArrayIndirect.frag.out @@ -1,5 +1,5 @@ spv.varyingArrayIndirect.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 70 diff --git a/Test/baseResults/spv.viewportArray2.tesc.out b/Test/baseResults/spv.viewportArray2.tesc.out index fe486cb3..806a04a2 100644 --- a/Test/baseResults/spv.viewportArray2.tesc.out +++ b/Test/baseResults/spv.viewportArray2.tesc.out @@ -1,5 +1,5 @@ spv.viewportArray2.tesc -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 25 diff --git a/Test/baseResults/spv.viewportArray2.vert.out b/Test/baseResults/spv.viewportArray2.vert.out index dace23bd..d6237042 100644 --- a/Test/baseResults/spv.viewportArray2.vert.out +++ b/Test/baseResults/spv.viewportArray2.vert.out @@ -1,5 +1,5 @@ spv.viewportArray2.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 19 diff --git a/Test/baseResults/spv.voidFunction.frag.out b/Test/baseResults/spv.voidFunction.frag.out index 2bd3abd8..67acb330 100755 --- a/Test/baseResults/spv.voidFunction.frag.out +++ b/Test/baseResults/spv.voidFunction.frag.out @@ -1,5 +1,5 @@ spv.voidFunction.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 43 diff --git a/Test/baseResults/spv.while-continue-break.vert.out b/Test/baseResults/spv.while-continue-break.vert.out index 329e7aa4..0b4bf473 100644 --- a/Test/baseResults/spv.while-continue-break.vert.out +++ b/Test/baseResults/spv.while-continue-break.vert.out @@ -1,5 +1,5 @@ spv.while-continue-break.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 41 diff --git a/Test/baseResults/spv.while-simple.vert.out b/Test/baseResults/spv.while-simple.vert.out index 69792e1b..c08d81c1 100755 --- a/Test/baseResults/spv.while-simple.vert.out +++ b/Test/baseResults/spv.while-simple.vert.out @@ -1,5 +1,5 @@ spv.while-simple.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 22 diff --git a/Test/baseResults/spv.whileLoop.frag.out b/Test/baseResults/spv.whileLoop.frag.out index d78dfd1f..bd54136f 100755 --- a/Test/baseResults/spv.whileLoop.frag.out +++ b/Test/baseResults/spv.whileLoop.frag.out @@ -1,5 +1,5 @@ spv.whileLoop.frag -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 35 diff --git a/Test/baseResults/spv.xfb.vert.out b/Test/baseResults/spv.xfb.vert.out index ae82e207..9b0b975d 100755 --- a/Test/baseResults/spv.xfb.vert.out +++ b/Test/baseResults/spv.xfb.vert.out @@ -1,5 +1,5 @@ spv.xfb.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 16 diff --git a/Test/baseResults/spv.xfb2.vert.out b/Test/baseResults/spv.xfb2.vert.out index d4d54f97..0eb91373 100755 --- a/Test/baseResults/spv.xfb2.vert.out +++ b/Test/baseResults/spv.xfb2.vert.out @@ -1,5 +1,5 @@ spv.xfb2.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 35 diff --git a/Test/baseResults/spv.xfb3.vert.out b/Test/baseResults/spv.xfb3.vert.out index c7b5b533..7d31a819 100755 --- a/Test/baseResults/spv.xfb3.vert.out +++ b/Test/baseResults/spv.xfb3.vert.out @@ -1,5 +1,5 @@ spv.xfb3.vert -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 35 diff --git a/Test/baseResults/vulkan.ast.vert.out b/Test/baseResults/vulkan.ast.vert.out index 19c8965e..a2f2ec93 100755 --- a/Test/baseResults/vulkan.ast.vert.out +++ b/Test/baseResults/vulkan.ast.vert.out @@ -257,7 +257,7 @@ Shader version: 450 0:? 'sci2' ( specialization-constant const highp int) 0:? 2 (const int) -// Module Version 10200 +// Module Version 10000 // Generated by (magic number): 80003 // Id's are bound by 50