diff --git a/SPIRV/spirv.hpp b/SPIRV/spirv.hpp index daef3419..c6776638 100755 --- a/SPIRV/spirv.hpp +++ b/SPIRV/spirv.hpp @@ -1,4 +1,4 @@ -// Copyright (c) 2014-2017 The Khronos Group Inc. +// Copyright (c) 2014-2018 The Khronos Group Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and/or associated documentation files (the "Materials"), @@ -46,12 +46,12 @@ namespace spv { typedef unsigned int Id; -#define SPV_VERSION 0x10000 -#define SPV_REVISION 12 +#define SPV_VERSION 0x10200 +#define SPV_REVISION 3 static const unsigned int MagicNumber = 0x07230203; -static const unsigned int Version = 0x00010000; -static const unsigned int Revision = 12; +static const unsigned int Version = 0x00010200; +static const unsigned int Revision = 3; static const unsigned int OpCodeMask = 0xffff; static const unsigned int WordCountShift = 16; @@ -122,6 +122,13 @@ enum ExecutionMode { ExecutionModeOutputTriangleStrip = 29, ExecutionModeVecTypeHint = 30, ExecutionModeContractionOff = 31, + ExecutionModeInitializer = 33, + ExecutionModeFinalizer = 34, + ExecutionModeSubgroupSize = 35, + ExecutionModeSubgroupsPerWorkgroup = 36, + ExecutionModeSubgroupsPerWorkgroupId = 37, + ExecutionModeLocalSizeId = 38, + ExecutionModeLocalSizeHintId = 39, ExecutionModePostDepthCoverage = 4446, ExecutionModeStencilRefReplacingEXT = 5027, ExecutionModeMax = 0x7fffffff, @@ -378,6 +385,9 @@ enum Decoration { DecorationNoContraction = 42, DecorationInputAttachmentIndex = 43, DecorationAlignment = 44, + DecorationMaxByteOffset = 45, + DecorationAlignmentId = 46, + DecorationMaxByteOffsetId = 47, DecorationExplicitInterpAMD = 4999, DecorationOverrideCoverageNV = 5248, DecorationPassthroughNV = 5250, @@ -470,6 +480,8 @@ enum SelectionControlMask { enum LoopControlShift { LoopControlUnrollShift = 0, LoopControlDontUnrollShift = 1, + LoopControlDependencyInfiniteShift = 2, + LoopControlDependencyLengthShift = 3, LoopControlMax = 0x7fffffff, }; @@ -477,6 +489,8 @@ enum LoopControlMask { LoopControlMaskNone = 0, LoopControlUnrollMask = 0x00000001, LoopControlDontUnrollMask = 0x00000002, + LoopControlDependencyInfiniteMask = 0x00000004, + LoopControlDependencyLengthMask = 0x00000008, }; enum FunctionControlShift { @@ -627,6 +641,9 @@ enum Capability { CapabilityStorageImageReadWithoutFormat = 55, CapabilityStorageImageWriteWithoutFormat = 56, CapabilityMultiViewport = 57, + CapabilitySubgroupDispatch = 58, + CapabilityNamedBarrier = 59, + CapabilityPipeStorage = 60, CapabilitySubgroupBallotKHR = 4423, CapabilityDrawParameters = 4427, CapabilitySubgroupVoteKHR = 4431, @@ -955,6 +972,18 @@ enum Op { OpAtomicFlagTestAndSet = 318, OpAtomicFlagClear = 319, OpImageSparseRead = 320, + OpSizeOf = 321, + OpTypePipeStorage = 322, + OpConstantPipeStorage = 323, + OpCreatePipeFromPipeStorage = 324, + OpGetKernelLocalSizeForSubgroupCount = 325, + OpGetKernelMaxNumSubgroups = 326, + OpTypeNamedBarrier = 327, + OpNamedBarrierInitialize = 328, + OpMemoryNamedBarrier = 329, + OpModuleProcessed = 330, + OpExecutionModeId = 331, + OpDecorateId = 332, OpSubgroupBallotKHR = 4421, OpSubgroupFirstInvocationKHR = 4422, OpSubgroupAllKHR = 4428, diff --git a/Test/baseLegalResults/hlsl.aliasOpaque.frag.out b/Test/baseLegalResults/hlsl.aliasOpaque.frag.out index 3bf38eaf..71367e47 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 10000 +// Module Version 10200 // 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 4b687450..1ebee7c3 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 10000 +// Module Version 10200 // 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 1ca88ad5..1881f45d 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 10000 +// Module Version 10200 // 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 ee8126c6..9bbbbf5d 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 10000 +// Module Version 10200 // 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 c18a9e9e..2c1790bc 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 10000 +// Module Version 10200 // 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 e4f43429..aed1b61f 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 10000 +// Module Version 10200 // 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 06d125d1..e0ae5c6d 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 10000 +// Module Version 10200 // 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 ce9ec885..a0502c6e 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 10000 +// Module Version 10200 // 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 2afceb87..942d312a 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 10000 +// Module Version 10200 // 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 0b17164b..92c09b97 100644 --- a/Test/baseResults/glsl.entryPointRename.vert.out +++ b/Test/baseResults/glsl.entryPointRename.vert.out @@ -1,5 +1,5 @@ glsl.entryPointRename.vert -// Module Version 10000 +// Module Version 10200 // 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 ba0d2b0d..f8b20e68 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 10000 +// Module Version 10200 // 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 532d17c8..44498165 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 10000 +// Module Version 10200 // 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 1a01bcbc..ee9e9bf3 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 10000 +// Module Version 10200 // 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 cc0dd65d..cfaf466d 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 10000 +// Module Version 10200 // 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 95d51ba3..745e712e 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 10000 +// Module Version 10200 // 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 36e79804..8e0e5e0d 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 10000 +// Module Version 10200 // 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 ccf8c69e..2908d467 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 10000 +// Module Version 10200 // 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 a81edc72..286b3e4c 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 10000 +// Module Version 10200 // 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 a82fe2d2..5694264a 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 10000 +// Module Version 10200 // 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 b5b38f5c..18a0a31b 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 10000 +// Module Version 10200 // 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 53a8dcb1..df4fdd55 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 10000 +// Module Version 10200 // 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 ce5203b3..efe3e711 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 10000 +// Module Version 10200 // 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 b507abac..d1d7297c 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 10000 +// Module Version 10200 // 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 15aa7772..c72b7e1c 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 10000 +// Module Version 10200 // 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 610c2381..8abc3b4c 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 10000 +// Module Version 10200 // 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 a2cf7f1f..fb86b5ba 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 10000 +// Module Version 10200 // 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 b4070994..5ce064f9 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 10000 +// Module Version 10200 // 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 40ad65a8..c9969a70 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 10000 +// Module Version 10200 // 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 a9a15d98..392a56a0 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 10000 +// Module Version 10200 // 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 b267ef9e..16e85f96 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 10000 +// Module Version 10200 // 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 0f2f748e..63fb8a89 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 10000 +// Module Version 10200 // 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 d2a1fa42..a6e50cd0 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 10000 +// Module Version 10200 // 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 405e5455..634945f6 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 10000 +// Module Version 10200 // 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 7bebb7b1..14ec95dc 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 10000 +// Module Version 10200 // 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 fbdfc2c6..8215b3ae 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 10000 +// Module Version 10200 // 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 95eca5e6..26d001b2 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 10000 +// Module Version 10200 // 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 244e0781..c25242f4 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 10000 +// Module Version 10200 // 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 95e14669..463f6ca5 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 10000 +// Module Version 10200 // 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 a863d7bb..430e5749 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 10000 +// Module Version 10200 // 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 cd5e05b2..7d47dd21 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 10000 +// Module Version 10200 // 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 04477dc7..4358f9f4 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 10000 +// Module Version 10200 // 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 07eece03..e613acaf 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 10000 +// Module Version 10200 // 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 d3da5682..fafde799 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 10000 +// Module Version 10200 // 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 172a5dcb..03e3e169 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 10000 +// Module Version 10200 // 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 a4494311..e5b9c475 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 10000 +// Module Version 10200 // 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 3ad4e2d5..e73152d7 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 10000 +// Module Version 10200 // 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 adc0a893..3b9b8eb4 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 10000 +// Module Version 10200 // 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 f4daf029..878ee857 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 10000 +// Module Version 10200 // 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 c9fd80a5..5ba1b6e1 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 10000 +// Module Version 10200 // 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 ba0047e5..b2665c79 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 10000 +// Module Version 10200 // 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 d80c388d..ce20c5bc 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 10000 +// Module Version 10200 // 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 254c5dbe..b070386b 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 10000 +// Module Version 10200 // 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 a2a4dadb..73c46d2e 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 10000 +// Module Version 10200 // 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 107b2559..d8a4abe8 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 10000 +// Module Version 10200 // 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 73a5deb9..3a3f9cc0 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 10000 +// Module Version 10200 // 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 fc03748b..bbcb19e2 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 10000 +// Module Version 10200 // 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 c6b4829b..80bc467a 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 10000 +// Module Version 10200 // 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 a68951d2..31e3475d 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 10000 +// Module Version 10200 // 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 f60fcf68..bedee9f4 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 10000 +// Module Version 10200 // 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 759d4cc1..17d8af99 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 10000 +// Module Version 10200 // 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 e657b51e..54637ff6 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 10000 +// Module Version 10200 // 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 460118be..47d4bb90 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 10000 +// Module Version 10200 // 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 cad3d10e..f66cd48e 100644 --- a/Test/baseResults/hlsl.dashI.vert.out +++ b/Test/baseResults/hlsl.dashI.vert.out @@ -1,5 +1,5 @@ hlsl.dashI.vert -// Module Version 10000 +// Module Version 10200 // 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 f1f9cc63..fe7319da 100644 --- a/Test/baseResults/hlsl.deadFunctionMissingBody.vert.out +++ b/Test/baseResults/hlsl.deadFunctionMissingBody.vert.out @@ -1,5 +1,5 @@ hlsl.deadFunctionMissingBody.vert -// Module Version 10000 +// Module Version 10200 // 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 fe398d5e..e55ee6cc 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 10000 +// Module Version 10200 // 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 a22768f2..299fac2f 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 10000 +// Module Version 10200 // 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 f24b4962..81e69946 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 10000 +// Module Version 10200 // 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 eb663ce5..da5c3e0c 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 10000 +// Module Version 10200 // 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 ec894228..3b7df5f1 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 10000 +// Module Version 10200 // 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 62960477..0d7d7e8d 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 10000 +// Module Version 10200 // 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 ca4e2d40..bcbd298d 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 10000 +// Module Version 10200 // 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 9c43a9f4..32f17d20 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 10000 +// Module Version 10200 // 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 4a61d1db..45a5ceaf 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 10000 +// Module Version 10200 // 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 c901c194..0032ebdb 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 10000 +// Module Version 10200 // 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 063804da..91a33877 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 10000 +// Module Version 10200 // 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 7d7bb6f0..11578b02 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 10000 +// Module Version 10200 // 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 9a555dd8..989cac59 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 10000 +// Module Version 10200 // 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 2619e4e3..82c6db4c 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 10000 +// Module Version 10200 // 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 4e5fc677..7d866ff0 100644 --- a/Test/baseResults/hlsl.explicitDescriptorSet.frag.out +++ b/Test/baseResults/hlsl.explicitDescriptorSet.frag.out @@ -1,5 +1,5 @@ hlsl.explicitDescriptorSet.frag -// Module Version 10000 +// Module Version 10200 // 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 2ff5eeb8..8c338bb5 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 10000 +// Module Version 10200 // 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 c6dc0549..900999c4 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 10000 +// Module Version 10200 // 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 33aee900..1a9b1555 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 10000 +// Module Version 10200 // 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 f867f241..d50c6c79 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 10000 +// Module Version 10200 // 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 e5e182fb..69f2eaca 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 10000 +// Module Version 10200 // 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 c6c16e6c..4ee226cb 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 10000 +// Module Version 10200 // 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 56e1aa93..13071750 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 10000 +// Module Version 10200 // 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 c457cd31..528b8d1d 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 10000 +// Module Version 10200 // 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 77e78fe0..e7321577 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 10000 +// Module Version 10200 // 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 6dd88625..2dfb2fac 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 10000 +// Module Version 10200 // 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 725f309b..b01c4712 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 10000 +// Module Version 10200 // 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 bebaf905..4acd7c14 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 10000 +// Module Version 10200 // 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 34cf7944..6e3a896d 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 10000 +// Module Version 10200 // 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 70737776..b13361df 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 10000 +// Module Version 10200 // 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 599f68f9..2a65867e 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 10000 +// Module Version 10200 // 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 41e2ed42..ad24db0f 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 10000 +// Module Version 10200 // 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 5de8d7af..f9e0d41f 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 10000 +// Module Version 10200 // 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 21653f6c..80c1408e 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 10000 +// Module Version 10200 // 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 3739787a..290f0180 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 10000 +// Module Version 10200 // 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 3351a993..4c3c6699 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 10000 +// Module Version 10200 // 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 7b5da68a..93cc6a3a 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 10000 +// Module Version 10200 // 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 e407bb04..61e44e15 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 10000 +// Module Version 10200 // 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 6f24423f..396fc5d9 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 10000 +// Module Version 10200 // 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 b5070e3d..8c3bff5d 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 10000 +// Module Version 10200 // 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 3e99bfa8..c9a525c2 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 10000 +// Module Version 10200 // 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 c4694f9e..74822af7 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 10000 +// Module Version 10200 // 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 8ccd10d6..6a1369f7 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 10000 +// Module Version 10200 // 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 f17f50fe..e8a8036f 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 10000 +// Module Version 10200 // 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 1db386fb..49ed33ad 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 10000 +// Module Version 10200 // 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 bbfb6a75..da72657e 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 10000 +// Module Version 10200 // 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 dae5b49d..0aa39f36 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 10000 +// Module Version 10200 // 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 a9666fb5..aa5eb450 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 10000 +// Module Version 10200 // 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 791edc45..8c614c41 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 10000 +// Module Version 10200 // 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 fa151946..30373465 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 10000 +// Module Version 10200 // 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 9e1a5060..a05ec2ac 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 10000 +// Module Version 10200 // 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 32dcb30b..fd666a4e 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 10000 +// Module Version 10200 // 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 66e041f3..7f0a2e71 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 10000 +// Module Version 10200 // 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 4437bc1d..cd830af9 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 10000 +// Module Version 10200 // 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 8ee93eed..98984308 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 10000 +// Module Version 10200 // 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 33122aba..38a6371c 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 10000 +// Module Version 10200 // 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 d476e60e..9b9f95e8 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 10000 +// Module Version 10200 // 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 c5529b78..823943ab 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 10000 +// Module Version 10200 // 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 400d6049..cf901ec7 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 10000 +// Module Version 10200 // 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 a8aa96be..20d37e8f 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 10000 +// Module Version 10200 // 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 0a9cb140..b2ec10f8 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 10000 +// Module Version 10200 // 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 0ccddd29..b5b282ba 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 10000 +// Module Version 10200 // 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 20ee2229..c469ab15 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 10000 +// Module Version 10200 // 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 500d1e1f..44d74f7e 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 10000 +// Module Version 10200 // 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 addaa25d..f1c2114f 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 10000 +// Module Version 10200 // 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 72520bc4..3d187477 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 10000 +// Module Version 10200 // 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 b6d65873..fa07adac 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 10000 +// Module Version 10200 // 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 bac6fabe..6b6c7055 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 10000 +// Module Version 10200 // 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 c2c7e851..d530fa53 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 10000 +// Module Version 10200 // 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 a1a61d8b..fc39c1ac 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 10000 +// Module Version 10200 // 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 f1dc1c33..dd981730 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 10000 +// Module Version 10200 // 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 a3748c32..bff5bf5b 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 10000 +// Module Version 10200 // 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 e66da7ef..e6df40a2 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 10000 +// Module Version 10200 // 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 ff3e0cf3..9bbb8004 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 10000 +// Module Version 10200 // 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 eccf03d1..82aa8b1d 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 10000 +// Module Version 10200 // 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 46593def..053634a9 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 10000 +// Module Version 10200 // 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 7ceb5e7f..484d947b 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 10000 +// Module Version 10200 // 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 e5cdcfe3..f6c634f1 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 10000 +// Module Version 10200 // 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 f7749a97..3a6c9390 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 10000 +// Module Version 10200 // 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 e4202423..d15caa5a 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 10000 +// Module Version 10200 // 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 4a760624..b5643325 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 10000 +// Module Version 10200 // 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 a3beaf4d..4651fd95 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 10000 +// Module Version 10200 // 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 4cb5f954..b9a4b52b 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 10000 +// Module Version 10200 // 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 309778a5..bc8b3c11 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 10000 +// Module Version 10200 // 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 23e704c5..4198a06b 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 10000 +// Module Version 10200 // 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 1c777979..e1c57d51 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 10000 +// Module Version 10200 // 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 dfaaabae..a6025def 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 10000 +// Module Version 10200 // 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 9bd7e957..7751173a 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 10000 +// Module Version 10200 // 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 045683e0..905af7df 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 10000 +// Module Version 10200 // 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 8425f45e..932d8b73 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 10000 +// Module Version 10200 // 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 8b63fe86..175af1e5 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 10000 +// Module Version 10200 // 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 ab62b5da..43c4f988 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 10000 +// Module Version 10200 // 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 39c2b468..7effb89f 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 10000 +// Module Version 10200 // 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 f7f64514..ce697827 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 10000 +// Module Version 10200 // 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 c4290340..9fdf51df 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 10000 +// Module Version 10200 // 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 0844ae31..0e03b763 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 10000 +// Module Version 10200 // 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 062b16af..d6a06d13 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 10000 +// Module Version 10200 // 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 7275ef01..1d369ba0 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 10000 +// Module Version 10200 // 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 5e5ef6ba..279ed1dd 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 10000 +// Module Version 10200 // 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 f5fd07d1..afe6e2ca 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 10000 +// Module Version 10200 // 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 9bc00bb0..efa21ba7 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 10000 +// Module Version 10200 // 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 9a3f3f07..f81357a5 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 10000 +// Module Version 10200 // 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 acade7ca..7c01f030 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 10000 +// Module Version 10200 // 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 cd3eeb9d..dd637e0c 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 10000 +// Module Version 10200 // 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 4554de5c..6bd61e5d 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 10000 +// Module Version 10200 // 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 11c8f53e..460c4c72 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 10000 +// Module Version 10200 // 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 b27af502..340dc327 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 10000 +// Module Version 10200 // 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 5d085434..d95fbb56 100644 --- a/Test/baseResults/hlsl.multiDescriptorSet.frag.out +++ b/Test/baseResults/hlsl.multiDescriptorSet.frag.out @@ -1,5 +1,5 @@ hlsl.multiDescriptorSet.frag -// Module Version 10000 +// Module Version 10200 // 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 5c56f33d..8eeec31f 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 10000 +// Module Version 10200 // 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 dc978cc0..ad997143 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 10000 +// Module Version 10200 // 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 b4b8d6cc..57f53ee6 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 10000 +// Module Version 10200 // 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 644733b4..1073706c 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 10000 +// Module Version 10200 // 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 e8a80082..60928c5f 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 10000 +// Module Version 10200 // 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 a75a7e18..1967d3f3 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 10000 +// Module Version 10200 // 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 c6ec011d..91014147 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 10000 +// Module Version 10200 // 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 42a0494d..2aa0b953 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 10000 +// Module Version 10200 // 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 079166cc..88ae2b1b 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 10000 +// Module Version 10200 // 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 bc2f57d2..5b227a0b 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 10000 +// Module Version 10200 // 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 5acae6f8..29f69ede 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 10000 +// Module Version 10200 // 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 e14987c2..8c175da4 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 10000 +// Module Version 10200 // 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 3b449fe5..1ea97b55 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 10000 +// Module Version 10200 // 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 01caf968..bc8999dc 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 10000 +// Module Version 10200 // 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 0aee624f..b20f38ea 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 10000 +// Module Version 10200 // 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 f227e8b3..95ccc926 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 10000 +// Module Version 10200 // 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 7a044085..b4111703 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 10000 +// Module Version 10200 // 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 956fc0f8..c4a50bca 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 10000 +// Module Version 10200 // 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 b59141f8..83881c99 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 10000 +// Module Version 10200 // 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 2be02265..e832fc71 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 10000 +// Module Version 10200 // 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 81ac024b..637c3e54 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 10000 +// Module Version 10200 // 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 c971ff30..d83bf690 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 10000 +// Module Version 10200 // 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 5b529e91..ad4d1ab1 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 10000 +// Module Version 10200 // 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 1311d237..5b01f9cf 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 10000 +// Module Version 10200 // 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 e4640a51..c1b6e8bd 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 10000 +// Module Version 10200 // 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 f563c32a..5f10dd85 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 10000 +// Module Version 10200 // 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 8e7ab9de..367bd97d 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 10000 +// Module Version 10200 // 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 3f6b163a..aa380858 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 10000 +// Module Version 10200 // 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 6100899d..357c9140 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 10000 +// Module Version 10200 // 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 68f5e3ca..fcbe66b2 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 10000 +// Module Version 10200 // 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 88a35b4d..1e5e5276 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 10000 +// Module Version 10200 // 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 de7128b1..ae4ad6af 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 10000 +// Module Version 10200 // 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 8956c155..a33903ac 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 10000 +// Module Version 10200 // 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 55d87a37..ef249396 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 10000 +// Module Version 10200 // 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 a3acb1ec..e25507d3 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 10000 +// Module Version 10200 // 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 615c6da0..be32c9d9 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 10000 +// Module Version 10200 // 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 000c84a8..b8459de6 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 10000 +// Module Version 10200 // 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 67cc41fd..f83009ab 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 10000 +// Module Version 10200 // 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 33df30c3..9125304a 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 10000 +// Module Version 10200 // 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 0daeb652..50dafee6 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 10000 +// Module Version 10200 // 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 d54bc511..206eb5b8 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 10000 +// Module Version 10200 // 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 ed20ddc2..eed2f51a 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 10000 +// Module Version 10200 // 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 812ef654..d7458c1f 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 10000 +// Module Version 10200 // 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 b5a4d711..ecab5058 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 10000 +// Module Version 10200 // 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 fca44748..e4422332 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 10000 +// Module Version 10200 // 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 83b48cf4..96b94fcb 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 10000 +// Module Version 10200 // 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 62fb50a9..3be329ad 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 10000 +// Module Version 10200 // 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 ec78a13c..a42791ec 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 10000 +// Module Version 10200 // 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 1d1ab509..0635bbc5 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 10000 +// Module Version 10200 // 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 feffb4a2..59efb541 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 10000 +// Module Version 10200 // 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 5ee5aa13..ed6df1a5 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 10000 +// Module Version 10200 // 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 167c247e..2b10ac18 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 10000 +// Module Version 10200 // 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 8caeabfd..4188d8f2 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 10000 +// Module Version 10200 // 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 1e66d6dd..a0b7bd1b 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 10000 +// Module Version 10200 // 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 c202784f..788d4d8c 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 10000 +// Module Version 10200 // 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 dcbe7bc5..826a2deb 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 10000 +// Module Version 10200 // 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 a7ec28a1..5fd4aaa5 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 10000 +// Module Version 10200 // 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 5f121c65..047e8d2e 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 10000 +// Module Version 10200 // 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 ac80dc01..453c50e1 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 10000 +// Module Version 10200 // 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 27983f98..ee3a1c51 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 10000 +// Module Version 10200 // 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 92f461f7..aaf94ef3 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 10000 +// Module Version 10200 // 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 d45f03f1..f470be1f 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 10000 +// Module Version 10200 // 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 3378d21f..630b9c37 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 10000 +// Module Version 10200 // 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 885c8986..80d3ab2e 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 10000 +// Module Version 10200 // 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 1138dafc..104cc294 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 10000 +// Module Version 10200 // 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 afcc1f6f..4be177a4 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 10000 +// Module Version 10200 // 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 3a9e6447..ae6f094b 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 10000 +// Module Version 10200 // 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 cfbfd9ce..5a6f6ef0 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 10000 +// Module Version 10200 // 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 95557f07..181cb4e4 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 10000 +// Module Version 10200 // 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 aa14f5fa..4efdb0b5 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 10000 +// Module Version 10200 // 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 7674acda..fe4d2d2b 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 10000 +// Module Version 10200 // 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 31dbc04f..25903b06 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 10000 +// Module Version 10200 // 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 9a1fa81e..a210de70 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 10000 +// Module Version 10200 // 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 8ca14cc1..ae37ddde 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 10000 +// Module Version 10200 // 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 c0f3a53b..02656c1c 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 10000 +// Module Version 10200 // 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 b70ccb6a..2fe3897f 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 10000 +// Module Version 10200 // 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 013ee1b2..91ff540d 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 10000 +// Module Version 10200 // 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 de5b7df0..ed9e9629 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 10000 +// Module Version 10200 // 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 7ec508f4..23dbbbf1 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 10000 +// Module Version 10200 // 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 79dd1d57..7a49ceca 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 10000 +// Module Version 10200 // 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 0c98e6fc..038c53d1 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 10000 +// Module Version 10200 // 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 61477039..96df92ac 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 10000 +// Module Version 10200 // 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 3b18239e..d575a65b 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 10000 +// Module Version 10200 // 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 d2e311a7..1e3512eb 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 10000 +// Module Version 10200 // 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 67dcf995..e298cc7c 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 10000 +// Module Version 10200 // 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 2e9d9855..40d6abe3 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 10000 +// Module Version 10200 // 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 7425b259..1b24cda8 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 10000 +// Module Version 10200 // 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 188b7976..3e02d64f 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 10000 +// Module Version 10200 // 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 8994ed41..3b4bb2a5 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 10000 +// Module Version 10200 // 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 e0ee89b7..bb145af2 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 10000 +// Module Version 10200 // 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 36674cac..b1ed41a1 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 10000 +// Module Version 10200 // 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 ab1344a1..b0fe6291 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 10000 +// Module Version 10200 // 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 994ecf15..f5358a4a 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 10000 +// Module Version 10200 // 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 dbc78c78..1f4f6610 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 10000 +// Module Version 10200 // 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 c00183e3..8ab6515c 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 10000 +// Module Version 10200 // 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 66043135..12744b16 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 10000 +// Module Version 10200 // 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 a5b85059..8a746a05 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 10000 +// Module Version 10200 // 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 e605ed3b..c1008891 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 10000 +// Module Version 10200 // 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 6059127a..c15d7a0f 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 10000 +// Module Version 10200 // 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 b440d4ed..93619d33 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 10000 +// Module Version 10200 // 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 9caa7f33..c938386f 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 10000 +// Module Version 10200 // 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 2fb0bf1e..7a5aa896 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 10000 +// Module Version 10200 // 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 e748b984..1e6b6a21 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 10000 +// Module Version 10200 // 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 b6a73a1a..2b0d3246 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 10000 +// Module Version 10200 // 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 d4bde1f6..30a47152 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 10000 +// Module Version 10200 // 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 33b734dd..0c4b25e7 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 10000 +// Module Version 10200 // 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 b60bd3af..6e0e7ef8 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 10000 +// Module Version 10200 // 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 5cb3bad4..b372cf7f 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 10000 +// Module Version 10200 // 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 51860a29..fce5ac70 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 10000 +// Module Version 10200 // 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 7e0318af..acca3051 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 10000 +// Module Version 10200 // 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 a07f3264..9c229cf8 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 10000 +// Module Version 10200 // 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 79610c95..5c248b1d 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 10000 +// Module Version 10200 // 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 e19b3113..4160d884 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 10000 +// Module Version 10200 // 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 9e7861cc..d6c40577 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 10000 +// Module Version 10200 // 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 81291dc7..3f45ebeb 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 10000 +// Module Version 10200 // 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 0b5dc287..50de1ef3 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 10000 +// Module Version 10200 // 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 60c58cb3..40a29bf3 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 10000 +// Module Version 10200 // 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 e4fc0d45..03e3d2c7 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 10000 +// Module Version 10200 // 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 41c64700..a17be216 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 10000 +// Module Version 10200 // 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 b228e463..6f328a6f 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 10000 +// Module Version 10200 // 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 4a87232c..a9706a67 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 10000 +// Module Version 10200 // 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 abd8e982..2db2baf7 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 10000 +// Module Version 10200 // 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 b5a5ba7e..c52345bd 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 10000 +// Module Version 10200 // 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 90118b05..dd6bad84 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 10000 +// Module Version 10200 // 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 e3e0b0c7..1f1b59ee 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 10000 +// Module Version 10200 // 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 77ed4f35..322988e8 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 10000 +// Module Version 10200 // 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 459c19f1..e2b71aff 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 10000 +// Module Version 10200 // 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 4c9e87ec..3e6e6bef 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 10000 +// Module Version 10200 // 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 e410ccfa..986f407d 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 10000 +// Module Version 10200 // 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 ef31f71b..51b012f0 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 10000 +// Module Version 10200 // 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 c63002dd..d7e2f5a4 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 10000 +// Module Version 10200 // 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 2bb50b6d..b0560956 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 10000 +// Module Version 10200 // 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 94e1f86a..3dde4c25 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 10000 +// Module Version 10200 // 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 508b54d0..9c7a1f89 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 10000 +// Module Version 10200 // 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 4cd16b4e..76dbb1a2 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 10000 +// Module Version 10200 // 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 e5ad330c..feab0f73 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 10000 +// Module Version 10200 // 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 3827cb15..bae62b0c 100644 --- a/Test/baseResults/remap.specconst.comp.out +++ b/Test/baseResults/remap.specconst.comp.out @@ -1,5 +1,5 @@ remap.specconst.comp -// Module Version 10000 +// Module Version 10200 // 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 d56bfceb..bc604f27 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 10000 +// Module Version 10200 // 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 bb42c65f..109a4639 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 10000 +// Module Version 10200 // 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 521819d8..8cfff583 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 10000 +// Module Version 10200 // 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 1bc458e8..f1d98e75 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 10000 +// Module Version 10200 // 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 f886b43e..89ecb60e 100755 --- a/Test/baseResults/spv.100ops.frag.out +++ b/Test/baseResults/spv.100ops.frag.out @@ -1,5 +1,5 @@ spv.100ops.frag -// Module Version 10000 +// Module Version 10200 // 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 43fa1965..3cf6c665 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 10000 +// Module Version 10200 // 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 15c69af2..89ec6505 100755 --- a/Test/baseResults/spv.140.frag.out +++ b/Test/baseResults/spv.140.frag.out @@ -1,5 +1,5 @@ spv.140.frag -// Module Version 10000 +// Module Version 10200 // 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 98769f77..d2600944 100755 --- a/Test/baseResults/spv.150.geom.out +++ b/Test/baseResults/spv.150.geom.out @@ -1,5 +1,5 @@ spv.150.geom -// Module Version 10000 +// Module Version 10200 // 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 203a99d4..cc13387d 100755 --- a/Test/baseResults/spv.150.vert.out +++ b/Test/baseResults/spv.150.vert.out @@ -1,5 +1,5 @@ spv.150.vert -// Module Version 10000 +// Module Version 10200 // 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 2f0f269e..a3dd8fbf 100755 --- a/Test/baseResults/spv.300BuiltIns.vert.out +++ b/Test/baseResults/spv.300BuiltIns.vert.out @@ -1,5 +1,5 @@ spv.300BuiltIns.vert -// Module Version 10000 +// Module Version 10200 // 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 79797d71..9d8bfdf3 100755 --- a/Test/baseResults/spv.300layout.frag.out +++ b/Test/baseResults/spv.300layout.frag.out @@ -1,5 +1,5 @@ spv.300layout.frag -// Module Version 10000 +// Module Version 10200 // 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 4674d8c2..cdadaa2f 100644 --- a/Test/baseResults/spv.300layout.vert.out +++ b/Test/baseResults/spv.300layout.vert.out @@ -1,5 +1,5 @@ spv.300layout.vert -// Module Version 10000 +// Module Version 10200 // 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 1f1ae9fc..ae41bcdd 100755 --- a/Test/baseResults/spv.300layoutp.vert.out +++ b/Test/baseResults/spv.300layoutp.vert.out @@ -1,5 +1,5 @@ spv.300layoutp.vert -// Module Version 10000 +// Module Version 10200 // 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 4b34c9fc..d94e0eae 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 10000 +// Module Version 10200 // 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 5ca40f8d..a77b0ee9 100644 --- a/Test/baseResults/spv.310.comp.out +++ b/Test/baseResults/spv.310.comp.out @@ -1,5 +1,5 @@ spv.310.comp -// Module Version 10000 +// Module Version 10200 // 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 5b211d09..c1a7615a 100644 --- a/Test/baseResults/spv.330.geom.out +++ b/Test/baseResults/spv.330.geom.out @@ -1,5 +1,5 @@ spv.330.geom -// Module Version 10000 +// Module Version 10200 // 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 3f73f5ba..e1d3da96 100644 --- a/Test/baseResults/spv.400.frag.out +++ b/Test/baseResults/spv.400.frag.out @@ -1,5 +1,5 @@ spv.400.frag -// Module Version 10000 +// Module Version 10200 // 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 13c1ed4c..186874a7 100644 --- a/Test/baseResults/spv.400.tesc.out +++ b/Test/baseResults/spv.400.tesc.out @@ -1,5 +1,5 @@ spv.400.tesc -// Module Version 10000 +// Module Version 10200 // 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 5a0c7459..7b07fb99 100755 --- a/Test/baseResults/spv.400.tese.out +++ b/Test/baseResults/spv.400.tese.out @@ -1,5 +1,5 @@ spv.400.tese -// Module Version 10000 +// Module Version 10200 // 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 41a84279..d0c18a01 100644 --- a/Test/baseResults/spv.420.geom.out +++ b/Test/baseResults/spv.420.geom.out @@ -1,5 +1,5 @@ spv.420.geom -// Module Version 10000 +// Module Version 10200 // 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 97c35e1a..d07687a8 100755 --- a/Test/baseResults/spv.430.frag.out +++ b/Test/baseResults/spv.430.frag.out @@ -1,5 +1,5 @@ spv.430.frag -// Module Version 10000 +// Module Version 10200 // 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 07f5cd7b..66608af6 100755 --- a/Test/baseResults/spv.430.vert.out +++ b/Test/baseResults/spv.430.vert.out @@ -1,5 +1,5 @@ spv.430.vert -// Module Version 10000 +// Module Version 10200 // 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 e3b58e71..e4089b2a 100755 --- a/Test/baseResults/spv.450.geom.out +++ b/Test/baseResults/spv.450.geom.out @@ -1,5 +1,5 @@ spv.450.geom -// Module Version 10000 +// Module Version 10200 // 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 20a65929..75485283 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 10000 +// Module Version 10200 // 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 a93b9cbd..ad7cad5a 100755 --- a/Test/baseResults/spv.450.tesc.out +++ b/Test/baseResults/spv.450.tesc.out @@ -1,5 +1,5 @@ spv.450.tesc -// Module Version 10000 +// Module Version 10200 // 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 be5148d5..aa46cc9e 100755 --- a/Test/baseResults/spv.460.comp.out +++ b/Test/baseResults/spv.460.comp.out @@ -1,5 +1,5 @@ spv.460.comp -// Module Version 10000 +// Module Version 10200 // 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 c05676f1..0df9a5a0 100755 --- a/Test/baseResults/spv.460.frag.out +++ b/Test/baseResults/spv.460.frag.out @@ -1,5 +1,5 @@ spv.460.frag -// Module Version 10000 +// Module Version 10200 // 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 4feb15b9..1f0b74f0 100755 --- a/Test/baseResults/spv.460.vert.out +++ b/Test/baseResults/spv.460.vert.out @@ -1,5 +1,5 @@ spv.460.vert -// Module Version 10000 +// Module Version 10200 // 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 f44466c5..0c4d4959 100644 --- a/Test/baseResults/spv.AofA.frag.out +++ b/Test/baseResults/spv.AofA.frag.out @@ -1,5 +1,5 @@ spv.AofA.frag -// Module Version 10000 +// Module Version 10200 // 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 0ddc9106..4f5cbdb3 100644 --- a/Test/baseResults/spv.GeometryShaderPassthrough.geom.out +++ b/Test/baseResults/spv.GeometryShaderPassthrough.geom.out @@ -1,5 +1,5 @@ spv.GeometryShaderPassthrough.geom -// Module Version 10000 +// Module Version 10200 // 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 17d38593..3ea1b188 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 10000 +// Module Version 10200 // 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 9b3f09ee..07563b3f 100755 --- a/Test/baseResults/spv.Operations.frag.out +++ b/Test/baseResults/spv.Operations.frag.out @@ -1,5 +1,5 @@ spv.Operations.frag -// Module Version 10000 +// Module Version 10200 // 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 2f4bf3aa..4711997a 100755 --- a/Test/baseResults/spv.accessChain.frag.out +++ b/Test/baseResults/spv.accessChain.frag.out @@ -1,5 +1,5 @@ spv.accessChain.frag -// Module Version 10000 +// Module Version 10200 // 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 d7142c3e..3ac65d4b 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 10000 +// Module Version 10200 // 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 349748f4..bc5249ef 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 10000 +// Module Version 10200 // 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 d1aff7e5..f77bdff0 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 10000 +// Module Version 10200 // 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 dd7a370b..7af79514 100644 --- a/Test/baseResults/spv.arbPostDepthCoverage.frag.out +++ b/Test/baseResults/spv.arbPostDepthCoverage.frag.out @@ -1,5 +1,5 @@ spv.arbPostDepthCoverage.frag -// Module Version 10000 +// Module Version 10200 // 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 5df873d2..85bf2fe9 100755 --- a/Test/baseResults/spv.atomic.comp.out +++ b/Test/baseResults/spv.atomic.comp.out @@ -1,5 +1,5 @@ spv.atomic.comp -// Module Version 10000 +// Module Version 10200 // 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 8daee95c..8a5b543c 100644 --- a/Test/baseResults/spv.atomicInt64.comp.out +++ b/Test/baseResults/spv.atomicInt64.comp.out @@ -1,5 +1,5 @@ spv.atomicInt64.comp -// Module Version 10000 +// Module Version 10200 // 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 5157f887..d6df623c 100755 --- a/Test/baseResults/spv.barrier.vert.out +++ b/Test/baseResults/spv.barrier.vert.out @@ -1,5 +1,5 @@ spv.barrier.vert -// Module Version 10000 +// Module Version 10200 // 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 e1627450..95f46587 100644 --- a/Test/baseResults/spv.bitCast.frag.out +++ b/Test/baseResults/spv.bitCast.frag.out @@ -1,5 +1,5 @@ spv.bitCast.frag -// Module Version 10000 +// Module Version 10200 // 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 a8c86034..fe26ba5d 100644 --- a/Test/baseResults/spv.bool.vert.out +++ b/Test/baseResults/spv.bool.vert.out @@ -1,5 +1,5 @@ spv.bool.vert -// Module Version 10000 +// Module Version 10200 // 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 e099c729..97902791 100644 --- a/Test/baseResults/spv.boolInBlock.frag.out +++ b/Test/baseResults/spv.boolInBlock.frag.out @@ -1,5 +1,5 @@ spv.boolInBlock.frag -// Module Version 10000 +// Module Version 10200 // 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 96e07c80..c0772560 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 10000 +// Module Version 10200 // 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 fe6af824..c6ef734f 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 10000 +// Module Version 10200 // 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 a1acfc4d..ef8f8d25 100755 --- a/Test/baseResults/spv.builtInXFB.vert.out +++ b/Test/baseResults/spv.builtInXFB.vert.out @@ -1,5 +1,5 @@ spv.builtInXFB.vert -// Module Version 10000 +// Module Version 10200 // 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 01c99324..8f44ceb7 100755 --- a/Test/baseResults/spv.conditionalDiscard.frag.out +++ b/Test/baseResults/spv.conditionalDiscard.frag.out @@ -1,5 +1,5 @@ spv.conditionalDiscard.frag -// Module Version 10000 +// Module Version 10200 // 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 87956dbf..41b4f77c 100755 --- a/Test/baseResults/spv.conversion.frag.out +++ b/Test/baseResults/spv.conversion.frag.out @@ -1,5 +1,5 @@ spv.conversion.frag -// Module Version 10000 +// Module Version 10200 // 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 e559c5d8..b59f9193 100755 --- a/Test/baseResults/spv.dataOut.frag.out +++ b/Test/baseResults/spv.dataOut.frag.out @@ -1,5 +1,5 @@ spv.dataOut.frag -// Module Version 10000 +// Module Version 10200 // 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 d532dbc2..5029c73c 100755 --- a/Test/baseResults/spv.dataOutIndirect.frag.out +++ b/Test/baseResults/spv.dataOutIndirect.frag.out @@ -1,5 +1,5 @@ spv.dataOutIndirect.frag -// Module Version 10000 +// Module Version 10200 // 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 7fe82c13..ed1e706c 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 10000 +// Module Version 10200 // 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 bc62354d..8f63ec3f 100644 --- a/Test/baseResults/spv.debugInfo.frag.out +++ b/Test/baseResults/spv.debugInfo.frag.out @@ -1,5 +1,5 @@ spv.debugInfo.frag -// Module Version 10000 +// Module Version 10200 // 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 ea63b178..41e2cf50 100644 --- a/Test/baseResults/spv.deepRvalue.frag.out +++ b/Test/baseResults/spv.deepRvalue.frag.out @@ -1,5 +1,5 @@ spv.deepRvalue.frag -// Module Version 10000 +// Module Version 10200 // 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 f195d1d7..988874b7 100755 --- a/Test/baseResults/spv.depthOut.frag.out +++ b/Test/baseResults/spv.depthOut.frag.out @@ -1,5 +1,5 @@ spv.depthOut.frag -// Module Version 10000 +// Module Version 10200 // 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 ceab9d43..3be8a8ef 100755 --- a/Test/baseResults/spv.deviceGroup.frag.out +++ b/Test/baseResults/spv.deviceGroup.frag.out @@ -1,5 +1,5 @@ spv.deviceGroup.frag -// Module Version 10000 +// Module Version 10200 // 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 be04de52..65058937 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 10000 +// Module Version 10200 // 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 5bad7fd7..ca48d91e 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 10000 +// Module Version 10200 // 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 ec161347..01550b53 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 10000 +// Module Version 10200 // 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 e365dbd5..4f448033 100755 --- a/Test/baseResults/spv.doWhileLoop.frag.out +++ b/Test/baseResults/spv.doWhileLoop.frag.out @@ -1,5 +1,5 @@ spv.doWhileLoop.frag -// Module Version 10000 +// Module Version 10200 // 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 1ba0599b..09ee6bb1 100755 --- a/Test/baseResults/spv.double.comp.out +++ b/Test/baseResults/spv.double.comp.out @@ -1,5 +1,5 @@ spv.double.comp -// Module Version 10000 +// Module Version 10200 // 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 c3f41b8b..b1a12a90 100755 --- a/Test/baseResults/spv.drawParams.vert.out +++ b/Test/baseResults/spv.drawParams.vert.out @@ -1,5 +1,5 @@ spv.drawParams.vert -// Module Version 10000 +// Module Version 10200 // 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 9f2f93fd..a1f43993 100755 --- a/Test/baseResults/spv.earlyReturnDiscard.frag.out +++ b/Test/baseResults/spv.earlyReturnDiscard.frag.out @@ -1,5 +1,5 @@ spv.earlyReturnDiscard.frag -// Module Version 10000 +// Module Version 10200 // 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 1b65772a..06e1bea5 100644 --- a/Test/baseResults/spv.extPostDepthCoverage.frag.out +++ b/Test/baseResults/spv.extPostDepthCoverage.frag.out @@ -1,5 +1,5 @@ spv.extPostDepthCoverage.frag -// Module Version 10000 +// Module Version 10200 // 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 e89d8238..cffd14b0 100644 --- a/Test/baseResults/spv.float16.frag.out +++ b/Test/baseResults/spv.float16.frag.out @@ -1,5 +1,5 @@ spv.float16.frag -// Module Version 10000 +// Module Version 10200 // 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 c3c3ffc6..5bb76a98 100755 --- a/Test/baseResults/spv.flowControl.frag.out +++ b/Test/baseResults/spv.flowControl.frag.out @@ -1,5 +1,5 @@ spv.flowControl.frag -// Module Version 10000 +// Module Version 10200 // 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 ff52d19b..0c6b73bb 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 10000 +// Module Version 10200 // 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 92828153..d5ad7084 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 10000 +// Module Version 10200 // 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 99f91506..7804cd40 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 10000 +// Module Version 10200 // 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 c6c8d69c..da2b2b4f 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 10000 +// Module Version 10200 // 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 2de4e78f..3ac03f55 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 10000 +// Module Version 10200 // 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 a52d7260..9479e602 100755 --- a/Test/baseResults/spv.forLoop.frag.out +++ b/Test/baseResults/spv.forLoop.frag.out @@ -1,5 +1,5 @@ spv.forLoop.frag -// Module Version 10000 +// Module Version 10200 // 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 2a8948db..de644205 100755 --- a/Test/baseResults/spv.forwardFun.frag.out +++ b/Test/baseResults/spv.forwardFun.frag.out @@ -1,5 +1,5 @@ spv.forwardFun.frag -// Module Version 10000 +// Module Version 10200 // 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 aa3529a2..3e25fc82 100644 --- a/Test/baseResults/spv.fullyCovered.frag.out +++ b/Test/baseResults/spv.fullyCovered.frag.out @@ -1,5 +1,5 @@ spv.fullyCovered.frag -// Module Version 10000 +// Module Version 10200 // 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 a5c58dab..5947a9d3 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 10000 +// Module Version 10200 // 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 e6a45e3c..47cf8794 100644 --- a/Test/baseResults/spv.functionNestedOpaque.vert.out +++ b/Test/baseResults/spv.functionNestedOpaque.vert.out @@ -1,5 +1,5 @@ spv.functionNestedOpaque.vert -// Module Version 10000 +// Module Version 10200 // 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 402a6669..b2411e59 100755 --- a/Test/baseResults/spv.functionSemantics.frag.out +++ b/Test/baseResults/spv.functionSemantics.frag.out @@ -1,5 +1,5 @@ spv.functionSemantics.frag -// Module Version 10000 +// Module Version 10200 // 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 4e890563..856a18b0 100755 --- a/Test/baseResults/spv.glFragColor.frag.out +++ b/Test/baseResults/spv.glFragColor.frag.out @@ -1,5 +1,5 @@ spv.glFragColor.frag -// Module Version 10000 +// Module Version 10200 // 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 bb72deed..eb6ec76f 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 10000 +// Module Version 10200 // 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 d145b7bc..4e245a1d 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 10000 +// Module Version 10200 // 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 71355ea6..b99849dd 100644 --- a/Test/baseResults/spv.hlslDebugInfo.frag.out +++ b/Test/baseResults/spv.hlslDebugInfo.frag.out @@ -1,5 +1,5 @@ spv.hlslDebugInfo.vert -// Module Version 10000 +// Module Version 10200 // 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 94728939..1f27966b 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 10000 +// Module Version 10200 // 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 668bbbe6..09e5295e 100644 --- a/Test/baseResults/spv.image.frag.out +++ b/Test/baseResults/spv.image.frag.out @@ -1,5 +1,5 @@ spv.image.frag -// Module Version 10000 +// Module Version 10200 // 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 7f40d206..f0990435 100644 --- a/Test/baseResults/spv.imageLoadStoreLod.frag.out +++ b/Test/baseResults/spv.imageLoadStoreLod.frag.out @@ -1,5 +1,5 @@ spv.imageLoadStoreLod.frag -// Module Version 10000 +// Module Version 10200 // 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 c0e0ee54..7f6bfb5a 100644 --- a/Test/baseResults/spv.int16.frag.out +++ b/Test/baseResults/spv.int16.frag.out @@ -1,5 +1,5 @@ spv.int16.frag -// Module Version 10000 +// Module Version 10200 // 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 4353efe1..25befe39 100644 --- a/Test/baseResults/spv.int64.frag.out +++ b/Test/baseResults/spv.int64.frag.out @@ -1,5 +1,5 @@ spv.int64.frag -// Module Version 10000 +// Module Version 10200 // 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 bd3db526..c586e285 100644 --- a/Test/baseResults/spv.intOps.vert.out +++ b/Test/baseResults/spv.intOps.vert.out @@ -1,5 +1,5 @@ spv.intOps.vert -// Module Version 10000 +// Module Version 10200 // 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 fa693d23..98986eb4 100644 --- a/Test/baseResults/spv.interpOps.frag.out +++ b/Test/baseResults/spv.interpOps.frag.out @@ -1,5 +1,5 @@ spv.interpOps.frag -// Module Version 10000 +// Module Version 10200 // 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 f989d1b9..a88c809f 100644 --- a/Test/baseResults/spv.layoutNested.vert.out +++ b/Test/baseResults/spv.layoutNested.vert.out @@ -1,5 +1,5 @@ spv.layoutNested.vert -// Module Version 10000 +// Module Version 10200 // 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 0eaba5d1..22424e17 100755 --- a/Test/baseResults/spv.length.frag.out +++ b/Test/baseResults/spv.length.frag.out @@ -1,5 +1,5 @@ spv.length.frag -// Module Version 10000 +// Module Version 10200 // 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 3b459957..f08a8a66 100755 --- a/Test/baseResults/spv.localAggregates.frag.out +++ b/Test/baseResults/spv.localAggregates.frag.out @@ -1,5 +1,5 @@ spv.localAggregates.frag -// Module Version 10000 +// Module Version 10200 // 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 225cf3b3..901ce3bf 100755 --- a/Test/baseResults/spv.loops.frag.out +++ b/Test/baseResults/spv.loops.frag.out @@ -1,5 +1,5 @@ spv.loops.frag -// Module Version 10000 +// Module Version 10200 // 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 28696222..d78f6823 100755 --- a/Test/baseResults/spv.loopsArtificial.frag.out +++ b/Test/baseResults/spv.loopsArtificial.frag.out @@ -1,5 +1,5 @@ spv.loopsArtificial.frag -// Module Version 10000 +// Module Version 10200 // 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 7c9db1b9..a06b54fe 100755 --- a/Test/baseResults/spv.matFun.vert.out +++ b/Test/baseResults/spv.matFun.vert.out @@ -1,5 +1,5 @@ spv.matFun.vert -// Module Version 10000 +// Module Version 10200 // 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 27800a59..ea2fdec7 100644 --- a/Test/baseResults/spv.matrix.frag.out +++ b/Test/baseResults/spv.matrix.frag.out @@ -1,5 +1,5 @@ spv.matrix.frag -// Module Version 10000 +// Module Version 10200 // 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 b5259990..e5d5667e 100644 --- a/Test/baseResults/spv.matrix2.frag.out +++ b/Test/baseResults/spv.matrix2.frag.out @@ -1,5 +1,5 @@ spv.matrix2.frag -// Module Version 10000 +// Module Version 10200 // 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 a8d64c70..7ec5fd56 100644 --- a/Test/baseResults/spv.memoryQualifier.frag.out +++ b/Test/baseResults/spv.memoryQualifier.frag.out @@ -1,5 +1,5 @@ spv.memoryQualifier.frag -// Module Version 10000 +// Module Version 10200 // 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 9d7e6dd7..7e1334fa 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 10000 +// Module Version 10200 // 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 738691c5..4d589c5d 100755 --- a/Test/baseResults/spv.multiStruct.comp.out +++ b/Test/baseResults/spv.multiStruct.comp.out @@ -1,5 +1,5 @@ spv.multiStruct.comp -// Module Version 10000 +// Module Version 10200 // 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 80d3408d..8204301c 100755 --- a/Test/baseResults/spv.multiStructFuncall.frag.out +++ b/Test/baseResults/spv.multiStructFuncall.frag.out @@ -1,5 +1,5 @@ spv.multiStructFuncall.frag -// Module Version 10000 +// Module Version 10200 // 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 73e922b4..87ddd1bc 100755 --- a/Test/baseResults/spv.multiView.frag.out +++ b/Test/baseResults/spv.multiView.frag.out @@ -1,5 +1,5 @@ spv.multiView.frag -// Module Version 10000 +// Module Version 10200 // 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 7c0b3b86..e77aed6d 100644 --- a/Test/baseResults/spv.multiviewPerViewAttributes.tesc.out +++ b/Test/baseResults/spv.multiviewPerViewAttributes.tesc.out @@ -1,5 +1,5 @@ spv.multiviewPerViewAttributes.tesc -// Module Version 10000 +// Module Version 10200 // 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 e4cab44b..5ef34420 100644 --- a/Test/baseResults/spv.multiviewPerViewAttributes.vert.out +++ b/Test/baseResults/spv.multiviewPerViewAttributes.vert.out @@ -1,5 +1,5 @@ spv.multiviewPerViewAttributes.vert -// Module Version 10000 +// Module Version 10200 // 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 048370a4..3d26b04a 100755 --- a/Test/baseResults/spv.newTexture.frag.out +++ b/Test/baseResults/spv.newTexture.frag.out @@ -1,5 +1,5 @@ spv.newTexture.frag -// Module Version 10000 +// Module Version 10200 // 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 928780e8..d5327a56 100644 --- a/Test/baseResults/spv.noBuiltInLoc.vert.out +++ b/Test/baseResults/spv.noBuiltInLoc.vert.out @@ -1,5 +1,5 @@ spv.noBuiltInLoc.vert -// Module Version 10000 +// Module Version 10200 // 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 9db41093..ef9963db 100644 --- a/Test/baseResults/spv.noDeadDecorations.vert.out +++ b/Test/baseResults/spv.noDeadDecorations.vert.out @@ -1,5 +1,5 @@ spv.noDeadDecorations.vert -// Module Version 10000 +// Module Version 10200 // 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 e34a6b5f..4e5cada5 100755 --- a/Test/baseResults/spv.noWorkgroup.comp.out +++ b/Test/baseResults/spv.noWorkgroup.comp.out @@ -1,5 +1,5 @@ spv.noWorkgroup.comp -// Module Version 10000 +// Module Version 10200 // 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 4c335eeb..c84fbf12 100755 --- a/Test/baseResults/spv.nonSquare.vert.out +++ b/Test/baseResults/spv.nonSquare.vert.out @@ -1,5 +1,5 @@ spv.nonSquare.vert -// Module Version 10000 +// Module Version 10200 // 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 8fd894f1..e60027f2 100755 --- a/Test/baseResults/spv.offsets.frag.out +++ b/Test/baseResults/spv.offsets.frag.out @@ -1,5 +1,5 @@ spv.offsets.frag -// Module Version 10000 +// Module Version 10200 // 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 927d56ac..bd8e8d4a 100755 --- a/Test/baseResults/spv.paramMemory.frag.out +++ b/Test/baseResults/spv.paramMemory.frag.out @@ -1,5 +1,5 @@ spv.paramMemory.frag -// Module Version 10000 +// Module Version 10200 // 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 bd1bf928..18d28d9b 100644 --- a/Test/baseResults/spv.precise.tesc.out +++ b/Test/baseResults/spv.precise.tesc.out @@ -1,5 +1,5 @@ spv.precise.tesc -// Module Version 10000 +// Module Version 10200 // 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 ffdbc892..abc9badf 100644 --- a/Test/baseResults/spv.precise.tese.out +++ b/Test/baseResults/spv.precise.tese.out @@ -1,5 +1,5 @@ spv.precise.tese -// Module Version 10000 +// Module Version 10200 // 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 710c6395..1ddfb800 100755 --- a/Test/baseResults/spv.precision.frag.out +++ b/Test/baseResults/spv.precision.frag.out @@ -1,5 +1,5 @@ spv.precision.frag -// Module Version 10000 +// Module Version 10200 // 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 e4235bd6..c20770c7 100755 --- a/Test/baseResults/spv.precisionNonESSamp.frag.out +++ b/Test/baseResults/spv.precisionNonESSamp.frag.out @@ -1,5 +1,5 @@ spv.precisionNonESSamp.frag -// Module Version 10000 +// Module Version 10200 // 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 56ee4589..14c2b97e 100755 --- a/Test/baseResults/spv.prepost.frag.out +++ b/Test/baseResults/spv.prepost.frag.out @@ -1,5 +1,5 @@ spv.prepost.frag -// Module Version 10000 +// Module Version 10200 // 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 591d6931..9b6cbad6 100644 --- a/Test/baseResults/spv.pushConstant.vert.out +++ b/Test/baseResults/spv.pushConstant.vert.out @@ -1,5 +1,5 @@ spv.pushConstant.vert -// Module Version 10000 +// Module Version 10200 // 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 14af8032..eef8e8ca 100755 --- a/Test/baseResults/spv.pushConstantAnon.vert.out +++ b/Test/baseResults/spv.pushConstantAnon.vert.out @@ -1,5 +1,5 @@ spv.pushConstantAnon.vert -// Module Version 10000 +// Module Version 10200 // 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 fca304dd..461c12ca 100755 --- a/Test/baseResults/spv.qualifiers.vert.out +++ b/Test/baseResults/spv.qualifiers.vert.out @@ -1,5 +1,5 @@ spv.qualifiers.vert -// Module Version 10000 +// Module Version 10200 // 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 70e677bb..8d3ec318 100755 --- a/Test/baseResults/spv.queryL.frag.out +++ b/Test/baseResults/spv.queryL.frag.out @@ -1,5 +1,5 @@ spv.queryL.frag -// Module Version 10000 +// Module Version 10200 // 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 6bc173b5..c1939c64 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 10000 +// Module Version 10200 // 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 cf4dad73..e465148d 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 10000 +// Module Version 10200 // 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 da53f58e..ac1f3bbf 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 10000 +// Module Version 10200 // 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 3072f965..4fc4f5f5 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 10000 +// Module Version 10200 // 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 e234dc6e..52f49baa 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 10000 +// Module Version 10200 // 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 306e635e..290c3ae5 100755 --- a/Test/baseResults/spv.sample.frag.out +++ b/Test/baseResults/spv.sample.frag.out @@ -1,5 +1,5 @@ spv.sample.frag -// Module Version 10000 +// Module Version 10200 // 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 666e751a..70c5b2ce 100755 --- a/Test/baseResults/spv.sampleId.frag.out +++ b/Test/baseResults/spv.sampleId.frag.out @@ -1,5 +1,5 @@ spv.sampleId.frag -// Module Version 10000 +// Module Version 10200 // 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 5ef07933..80addb8b 100644 --- a/Test/baseResults/spv.sampleMaskOverrideCoverage.frag.out +++ b/Test/baseResults/spv.sampleMaskOverrideCoverage.frag.out @@ -1,5 +1,5 @@ spv.sampleMaskOverrideCoverage.frag -// Module Version 10000 +// Module Version 10200 // 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 ebd963bf..164e9c4d 100755 --- a/Test/baseResults/spv.samplePosition.frag.out +++ b/Test/baseResults/spv.samplePosition.frag.out @@ -1,5 +1,5 @@ spv.samplePosition.frag -// Module Version 10000 +// Module Version 10200 // 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 3ef80132..9f6de953 100644 --- a/Test/baseResults/spv.separate.frag.out +++ b/Test/baseResults/spv.separate.frag.out @@ -1,5 +1,5 @@ spv.separate.frag -// Module Version 10000 +// Module Version 10200 // 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 a5a83630..0bb217c3 100755 --- a/Test/baseResults/spv.set.vert.out +++ b/Test/baseResults/spv.set.vert.out @@ -1,5 +1,5 @@ spv.set.vert -// Module Version 10000 +// Module Version 10200 // 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 ec85d70e..833c9ed2 100644 --- a/Test/baseResults/spv.shaderBallot.comp.out +++ b/Test/baseResults/spv.shaderBallot.comp.out @@ -1,5 +1,5 @@ spv.shaderBallot.comp -// Module Version 10000 +// Module Version 10200 // 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 aca5ba6e..d33f053e 100644 --- a/Test/baseResults/spv.shaderBallotAMD.comp.out +++ b/Test/baseResults/spv.shaderBallotAMD.comp.out @@ -1,5 +1,5 @@ spv.shaderBallotAMD.comp -// Module Version 10000 +// Module Version 10200 // 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 0fb27ad3..2bf7d629 100644 --- a/Test/baseResults/spv.shaderDrawParams.vert.out +++ b/Test/baseResults/spv.shaderDrawParams.vert.out @@ -1,5 +1,5 @@ spv.shaderDrawParams.vert -// Module Version 10000 +// Module Version 10200 // 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 a703082c..dff28bc2 100644 --- a/Test/baseResults/spv.shaderFragMaskAMD.frag.out +++ b/Test/baseResults/spv.shaderFragMaskAMD.frag.out @@ -1,5 +1,5 @@ spv.shaderFragMaskAMD.frag -// Module Version 10000 +// Module Version 10200 // 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 2b7e13a9..aefcea4d 100644 --- a/Test/baseResults/spv.shaderGroupVote.comp.out +++ b/Test/baseResults/spv.shaderGroupVote.comp.out @@ -1,5 +1,5 @@ spv.shaderGroupVote.comp -// Module Version 10000 +// Module Version 10200 // 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 5267ed99..4afd5376 100644 --- a/Test/baseResults/spv.shaderStencilExport.frag.out +++ b/Test/baseResults/spv.shaderStencilExport.frag.out @@ -1,5 +1,5 @@ spv.shaderStencilExport.frag -// Module Version 10000 +// Module Version 10200 // 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 22bcaf3b..836ee719 100644 --- a/Test/baseResults/spv.shiftOps.frag.out +++ b/Test/baseResults/spv.shiftOps.frag.out @@ -1,5 +1,5 @@ spv.shiftOps.frag -// Module Version 10000 +// Module Version 10200 // 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 9ba472ad..c5665eaa 100644 --- a/Test/baseResults/spv.shortCircuit.frag.out +++ b/Test/baseResults/spv.shortCircuit.frag.out @@ -1,5 +1,5 @@ spv.shortCircuit.frag -// Module Version 10000 +// Module Version 10200 // 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 0ee0f90b..b7902eea 100755 --- a/Test/baseResults/spv.simpleFunctionCall.frag.out +++ b/Test/baseResults/spv.simpleFunctionCall.frag.out @@ -1,5 +1,5 @@ spv.simpleFunctionCall.frag -// Module Version 10000 +// Module Version 10200 // 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 b5799062..793de268 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 10000 +// Module Version 10200 // 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 674f11c5..bc007cf1 100644 --- a/Test/baseResults/spv.sparseTexture.frag.out +++ b/Test/baseResults/spv.sparseTexture.frag.out @@ -1,5 +1,5 @@ spv.sparseTexture.frag -// Module Version 10000 +// Module Version 10200 // 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 e9e662f6..2ff58a9a 100644 --- a/Test/baseResults/spv.sparseTextureClamp.frag.out +++ b/Test/baseResults/spv.sparseTextureClamp.frag.out @@ -1,5 +1,5 @@ spv.sparseTextureClamp.frag -// Module Version 10000 +// Module Version 10200 // 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 181d02a6..afdb0c1e 100755 --- a/Test/baseResults/spv.specConst.vert.out +++ b/Test/baseResults/spv.specConst.vert.out @@ -1,5 +1,5 @@ spv.specConst.vert -// Module Version 10000 +// Module Version 10200 // 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 4f4897bf..653af723 100644 --- a/Test/baseResults/spv.specConstant.comp.out +++ b/Test/baseResults/spv.specConstant.comp.out @@ -1,5 +1,5 @@ spv.specConstant.comp -// Module Version 10000 +// Module Version 10200 // 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 a8fc861c..e4df66fc 100644 --- a/Test/baseResults/spv.specConstant.vert.out +++ b/Test/baseResults/spv.specConstant.vert.out @@ -1,5 +1,5 @@ spv.specConstant.vert -// Module Version 10000 +// Module Version 10200 // 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 e3cd6819..6680f66b 100644 --- a/Test/baseResults/spv.specConstantComposite.vert.out +++ b/Test/baseResults/spv.specConstantComposite.vert.out @@ -1,5 +1,5 @@ spv.specConstantComposite.vert -// Module Version 10000 +// Module Version 10200 // 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 2615eab4..348d9580 100644 --- a/Test/baseResults/spv.specConstantOperations.vert.out +++ b/Test/baseResults/spv.specConstantOperations.vert.out @@ -1,5 +1,5 @@ spv.specConstantOperations.vert -// Module Version 10000 +// Module Version 10200 // 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 d5e37cb3..6fcaad4e 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 10000 +// Module Version 10200 // 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 68c2d6a0..cb087b55 100755 --- a/Test/baseResults/spv.ssboAlias.frag.out +++ b/Test/baseResults/spv.ssboAlias.frag.out @@ -1,5 +1,5 @@ spv.ssboAlias.frag -// Module Version 10000 +// Module Version 10200 // 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 b7dfa636..0fe58913 100644 --- a/Test/baseResults/spv.stereoViewRendering.tesc.out +++ b/Test/baseResults/spv.stereoViewRendering.tesc.out @@ -1,5 +1,5 @@ spv.stereoViewRendering.tesc -// Module Version 10000 +// Module Version 10200 // 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 31c6e216..18ecc0f8 100644 --- a/Test/baseResults/spv.stereoViewRendering.vert.out +++ b/Test/baseResults/spv.stereoViewRendering.vert.out @@ -1,5 +1,5 @@ spv.stereoViewRendering.vert -// Module Version 10000 +// Module Version 10200 // 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 09aef0d8..12bb5c7f 100755 --- a/Test/baseResults/spv.storageBuffer.vert.out +++ b/Test/baseResults/spv.storageBuffer.vert.out @@ -1,5 +1,5 @@ spv.storageBuffer.vert -// Module Version 10000 +// Module Version 10200 // 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 b27d4f1b..02e315c8 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 10000 +// Module Version 10200 // 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 d1f46997..3d086ad4 100755 --- a/Test/baseResults/spv.structDeref.frag.out +++ b/Test/baseResults/spv.structDeref.frag.out @@ -1,5 +1,5 @@ spv.structDeref.frag -// Module Version 10000 +// Module Version 10200 // 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 3238b331..aff943b1 100755 --- a/Test/baseResults/spv.structure.frag.out +++ b/Test/baseResults/spv.structure.frag.out @@ -1,5 +1,5 @@ spv.structure.frag -// Module Version 10000 +// Module Version 10200 // 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 f89c795a..e0a839a3 100644 --- a/Test/baseResults/spv.subpass.frag.out +++ b/Test/baseResults/spv.subpass.frag.out @@ -1,5 +1,5 @@ spv.subpass.frag -// Module Version 10000 +// Module Version 10200 // 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 d9eec0db..854f1741 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 10000 +// Module Version 10200 // 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 df7bcaf5..335cc3b5 100755 --- a/Test/baseResults/spv.swizzle.frag.out +++ b/Test/baseResults/spv.swizzle.frag.out @@ -1,5 +1,5 @@ spv.swizzle.frag -// Module Version 10000 +// Module Version 10200 // 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 ada29a63..494f1af6 100755 --- a/Test/baseResults/spv.swizzleInversion.frag.out +++ b/Test/baseResults/spv.swizzleInversion.frag.out @@ -1,5 +1,5 @@ spv.swizzleInversion.frag -// Module Version 10000 +// Module Version 10200 // 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 ea868f8b..794a4b69 100644 --- a/Test/baseResults/spv.test.frag.out +++ b/Test/baseResults/spv.test.frag.out @@ -1,5 +1,5 @@ spv.test.frag -// Module Version 10000 +// Module Version 10200 // 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 54fb81fd..a7fad2c9 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 10000 +// Module Version 10200 // 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 1a601f7a..93599753 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 10000 +// Module Version 10200 // 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 d33ad592..a7600f09 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 10000 +// Module Version 10200 // 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 9f94f242..dc53eb43 100755 --- a/Test/baseResults/spv.texture.vert.out +++ b/Test/baseResults/spv.texture.vert.out @@ -1,5 +1,5 @@ spv.texture.vert -// Module Version 10000 +// Module Version 10200 // 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 3850ce10..9d0c4fb1 100755 --- a/Test/baseResults/spv.textureBuffer.vert.out +++ b/Test/baseResults/spv.textureBuffer.vert.out @@ -1,5 +1,5 @@ spv.textureBuffer.vert -// Module Version 10000 +// Module Version 10200 // 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 cc314918..24281002 100644 --- a/Test/baseResults/spv.textureGatherBiasLod.frag.out +++ b/Test/baseResults/spv.textureGatherBiasLod.frag.out @@ -1,5 +1,5 @@ spv.textureGatherBiasLod.frag -// Module Version 10000 +// Module Version 10200 // 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 704561ac..b145a6d6 100755 --- a/Test/baseResults/spv.types.frag.out +++ b/Test/baseResults/spv.types.frag.out @@ -1,5 +1,5 @@ spv.types.frag -// Module Version 10000 +// Module Version 10200 // 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 9e1ccb1f..dc85ae6e 100755 --- a/Test/baseResults/spv.uint.frag.out +++ b/Test/baseResults/spv.uint.frag.out @@ -1,5 +1,5 @@ spv.uint.frag -// Module Version 10000 +// Module Version 10200 // 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 f355e2cf..4732de3f 100644 --- a/Test/baseResults/spv.uniformArray.frag.out +++ b/Test/baseResults/spv.uniformArray.frag.out @@ -1,5 +1,5 @@ spv.uniformArray.frag -// Module Version 10000 +// Module Version 10200 // 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 fd93913d..4cbd498b 100755 --- a/Test/baseResults/spv.variableArrayIndex.frag.out +++ b/Test/baseResults/spv.variableArrayIndex.frag.out @@ -1,5 +1,5 @@ spv.variableArrayIndex.frag -// Module Version 10000 +// Module Version 10200 // 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 bc0979da..c9035165 100755 --- a/Test/baseResults/spv.varyingArray.frag.out +++ b/Test/baseResults/spv.varyingArray.frag.out @@ -1,5 +1,5 @@ spv.varyingArray.frag -// Module Version 10000 +// Module Version 10200 // 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 f7d69438..07ddd68f 100755 --- a/Test/baseResults/spv.varyingArrayIndirect.frag.out +++ b/Test/baseResults/spv.varyingArrayIndirect.frag.out @@ -1,5 +1,5 @@ spv.varyingArrayIndirect.frag -// Module Version 10000 +// Module Version 10200 // 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 806a04a2..fe486cb3 100644 --- a/Test/baseResults/spv.viewportArray2.tesc.out +++ b/Test/baseResults/spv.viewportArray2.tesc.out @@ -1,5 +1,5 @@ spv.viewportArray2.tesc -// Module Version 10000 +// Module Version 10200 // 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 d6237042..dace23bd 100644 --- a/Test/baseResults/spv.viewportArray2.vert.out +++ b/Test/baseResults/spv.viewportArray2.vert.out @@ -1,5 +1,5 @@ spv.viewportArray2.vert -// Module Version 10000 +// Module Version 10200 // 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 67acb330..2bd3abd8 100755 --- a/Test/baseResults/spv.voidFunction.frag.out +++ b/Test/baseResults/spv.voidFunction.frag.out @@ -1,5 +1,5 @@ spv.voidFunction.frag -// Module Version 10000 +// Module Version 10200 // 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 0b4bf473..329e7aa4 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 10000 +// Module Version 10200 // 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 c08d81c1..69792e1b 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 10000 +// Module Version 10200 // 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 bd54136f..d78dfd1f 100755 --- a/Test/baseResults/spv.whileLoop.frag.out +++ b/Test/baseResults/spv.whileLoop.frag.out @@ -1,5 +1,5 @@ spv.whileLoop.frag -// Module Version 10000 +// Module Version 10200 // 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 9b0b975d..ae82e207 100755 --- a/Test/baseResults/spv.xfb.vert.out +++ b/Test/baseResults/spv.xfb.vert.out @@ -1,5 +1,5 @@ spv.xfb.vert -// Module Version 10000 +// Module Version 10200 // 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 0eb91373..d4d54f97 100755 --- a/Test/baseResults/spv.xfb2.vert.out +++ b/Test/baseResults/spv.xfb2.vert.out @@ -1,5 +1,5 @@ spv.xfb2.vert -// Module Version 10000 +// Module Version 10200 // 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 7d31a819..c7b5b533 100755 --- a/Test/baseResults/spv.xfb3.vert.out +++ b/Test/baseResults/spv.xfb3.vert.out @@ -1,5 +1,5 @@ spv.xfb3.vert -// Module Version 10000 +// Module Version 10200 // 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 a2f2ec93..19c8965e 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 10000 +// Module Version 10200 // Generated by (magic number): 80003 // Id's are bound by 50