glslang-zig/Test/baseResults
Roy.li 24dcbd1b1f
Reserve unused std140 uniform block in reflection, and fix uniform block matrix layout (#2041)
According to the spec glsl4.60.7:
4.4.5. Uniform and Shader Storage Block Layout Qualifiers:
"The packed qualifier overrides only std140, std430, and shared; other qualifiers are inherited.
When packed is used, no shareable layout is guaranteed. The compiler and linker can optimize
memory use based on what variables actively get used and on other criteria. Offsets must be
queried, as there is no other way of guaranteeing where (and which) variables reside within the
block"

we should reserve std140 block and shared block in reflection.

According to the spec glsl4.60.7:
4.4.5. Uniform and Shader Storage Block Layout Qualifiers:
"The row_major and column_major qualifiers only affect the layout of matrices, including all
matrices contained in structures and arrays they are applied to, to all depths of nesting. These
qualifiers can be applied to other types, but will have no effect."

We need ensure all matrix block member been effect.

Support EShMsgKeepUncalled in reflection

EShMsgKeepUncalled  is a link message for link program.
We need only one option to control uncalled function optimization.
If we set EShMsgKeepUncalled as false in link time, linker won't be keep the uncall function sequence in AST,  and if we set EShMsgKeepUncalled as true in link time, linker will keep all uncalled function sequence in AST.
So, in reflecte time, we just only travers all function sequence. It make EShMsgKeepUncalled  only work at linker, and can effect reflection.

Recursively layout packing to "block member"

layout packing isn't set recursively, it causes TReflection::getOffsets doesn't work correctly.
2020-05-15 02:26:48 -06:00
..
100.frag.out Add support for es extension GL_EXT_blend_func_extended 2020-04-30 23:21:14 -07:00
100Limits.vert.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
100LimitsConf.vert.out Don't print the "Linked stage" message unless the AST is being dumped. 2016-12-03 13:59:51 -07:00
100samplerExternal.frag.out Add support for GL_OES_EGL_image_external_essl3 2017-09-05 14:56:26 +01:00
100scope.vert.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
110scope.vert.out GLSL: Fix #1358: Support "struct name", where name could be a user type 2018-06-11 19:28:15 -06:00
120.frag.out Rename GL_KHX_shader_explicit_arithmetic_types to GL_EXT_shader_explicit_arithmetic_types 2018-12-03 13:16:59 +01:00
120.vert.out Add support for ARB_uniform_buffer_object 2019-12-23 16:30:12 +08:00
130.frag.out Add support for ARB_sample_shading 2019-12-23 14:34:38 +08:00
130.vert.out Test Results Only: Include size in implicitly sized arrays (change to unsized). 2018-03-25 14:05:38 -06:00
140.frag.out Add support for ARB_texture_multisample 2019-12-23 15:37:04 +08:00
140.vert.out Test Results Only: Include size in implicitly sized arrays (change to unsized). 2018-03-25 14:05:38 -06:00
150.frag.out Add support for extension GL_EXT_shader_integer_mix (#2203) 2020-04-30 22:41:33 -06:00
150.geom.out Test Results Only: Include size in implicitly sized arrays (change to unsized). 2018-03-25 14:05:38 -06:00
150.tesc.out GLSL: Fix #1300: Can redeclare without size a sized built-in block array. 2018-04-19 19:42:50 -06:00
150.vert.out Add support for extension GL_ARB_vertex_attrib_64bit (#2193) 2020-04-29 06:58:49 -06:00
300.frag.out Add support for es extension GL_EXT_blend_func_extended 2020-04-30 23:21:14 -07:00
300.vert.out Implement GL_EXT_scalar_block_layout 2018-11-14 09:30:53 -06:00
300block.frag.out Reserve unused std140 uniform block in reflection, and fix uniform block matrix layout (#2041) 2020-05-15 02:26:48 -06:00
300BuiltIns.frag.out Fix #1983: __ is okay starting with ES 300, rather than 310. 2019-11-23 01:29:02 -07:00
300layout.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
300layout.vert.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
300link.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
300link2.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
300link3.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
300operations.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
300samplerExternal.frag.out Add support for GL_OES_EGL_image_external_essl3 2017-09-05 14:56:26 +01:00
300samplerExternalYUV.frag.out Add support for GL_EXT_YUV_target 2019-01-29 13:17:47 -08:00
300scope.vert.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
310.comp.out GLSL: Inherit memory qualifiers, both declaratively and in execution. 2019-08-22 08:54:22 -06:00
310.frag.out Add support for extension GL_EXT_shader_implicit_conversions 2020-04-30 08:41:23 -07:00
310.geom.out GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
310.inheritMemory.frag.out Reserve unused std140 uniform block in reflection, and fix uniform block matrix layout (#2041) 2020-05-15 02:26:48 -06:00
310.tesc.out Fix bugs in missing Builtin decoration for some NV builtins for tessellation 2019-07-22 12:36:38 -07:00
310.tese.out Fix bugs in missing Builtin decoration for some NV builtins for tessellation 2019-07-22 12:36:38 -07:00
310.vert.out Fix bug in printing trailing comma when dumping AST for a structure. 2019-07-17 14:40:58 -07:00
310AofA.vert.out Non-functional. Rationalizations enabling future generalizations: 2018-03-28 18:01:20 -06:00
310implicitSizeArrayError.vert.out Non-functional. Rationalizations enabling future generalizations: 2018-03-28 18:01:20 -06:00
310runtimeArray.vert.out Remove execute permissions 2018-08-07 03:16:20 +09:00
320.comp.out ESSL: Fix #1823: Conditions for when derivatives are in compute shader. 2019-07-15 01:20:18 -06:00
320.frag.out Remove execute permissions 2018-08-07 03:16:20 +09:00
320.geom.out Remove execute permissions 2018-08-07 03:16:20 +09:00
320.tesc.out Fix bugs in missing Builtin decoration for some NV builtins for tessellation 2019-07-22 12:36:38 -07:00
320.tese.out Fix bugs in missing Builtin decoration for some NV builtins for tessellation 2019-07-22 12:36:38 -07:00
320.vert.out Fix bug in printing trailing comma when dumping AST for a structure. 2019-07-17 14:40:58 -07:00
330.frag.out Add support for extension GL_ARB_texture_query_lod. (#2194) 2020-04-27 23:46:54 -06:00
330comp.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
400.frag.out Test Results Only: Include size in implicitly sized arrays (change to unsized). 2018-03-25 14:05:38 -06:00
400.geom.out Revert "GLSL: Fix #1279: refract does not have a double-type eta." 2018-06-19 09:43:09 -06:00
400.tesc.out Test Results Only: Include size in implicitly sized arrays (change to unsized). 2018-03-25 14:05:38 -06:00
400.tese.out GLSL: Fix #1300: Can redeclare without size a sized built-in block array. 2018-04-19 19:42:50 -06:00
400.vert.out Remove execute permissions 2018-08-07 03:16:20 +09:00
410.geom.out Fix bug in printing trailing comma when dumping AST for a structure. 2019-07-17 14:40:58 -07:00
410.tesc.out Test Results Only: Include size in implicitly sized arrays (change to unsized). 2018-03-25 14:05:38 -06:00
410.vert.out Add builtin constants 2020-01-06 15:53:20 +08:00
420.comp.out Remove execute permissions 2018-08-07 03:16:20 +09:00
420.frag.out Add support for extension GL_ARB_shader_storage_buffer_object (#2184) 2020-04-22 22:46:52 -06:00
420.geom.out Test Results Only: Include size in implicitly sized arrays (change to unsized). 2018-03-25 14:05:38 -06:00
420.tesc.out Test Results Only: Include size in implicitly sized arrays (change to unsized). 2018-03-25 14:05:38 -06:00
420.tese.out Test Results Only: Include size in implicitly sized arrays (change to unsized). 2018-03-25 14:05:38 -06:00
420.vert.out Fix bug in printing trailing comma when dumping AST for a structure. 2019-07-17 14:40:58 -07:00
420_size_gl_in.geom.out Test Results Only: Include size in implicitly sized arrays (change to unsized). 2018-03-25 14:05:38 -06:00
430.comp.out Add flags for local size values ( compute shader ) 2019-09-16 16:39:54 +08:00
430.vert.out Fix bug in printing trailing comma when dumping AST for a structure. 2019-07-17 14:40:58 -07:00
430AofA.frag.out Test Results Only: Include size in implicitly sized arrays (change to unsized). 2018-03-25 14:05:38 -06:00
430scope.vert.out Test Results Only: Include size in implicitly sized arrays (change to unsized). 2018-03-25 14:05:38 -06:00
435.vert.out Remove execute permissions 2018-08-07 03:16:20 +09:00
440.frag.out Implement GL_EXT_scalar_block_layout 2018-11-14 09:30:53 -06:00
440.vert.out Fix bug in printing trailing comma when dumping AST for a structure. 2019-07-17 14:40:58 -07:00
450.comp.out Modify atomic_uint binding check 2019-12-25 17:08:48 +08:00
450.frag.out GLSL: validation of early_fragment_tests, others, on an object. 2017-06-29 10:46:47 -06:00
450.geom.out GLSL: validation of early_fragment_tests, others, on an object. 2017-06-29 10:46:47 -06:00
450.tesc.out GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
450.tese.out GLSL: validation of early_fragment_tests, others, on an object. 2017-06-29 10:46:47 -06:00
450.vert.out GLSL: Fix #1193: no 'location' on uniform/buffer block. 2017-12-16 10:07:22 -07:00
460.frag.out SPV 1.4: Implement the 5 new loop controls. 2019-05-10 00:02:45 -06:00
460.vert.out Add constant expression with mod 2019-12-23 11:29:52 +08:00
aggOps.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
always-discard.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
always-discard2.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
array.frag.out GLSL: Fix #1359: don't allow unsized arrays as initializers. 2018-04-23 15:32:47 -06:00
array100.frag.out Test Results Only: Include size in implicitly sized arrays (change to unsized). 2018-03-25 14:05:38 -06:00
atomic_uint.frag.out atomic counter offset should align to 4 2019-12-25 17:27:45 +08:00
badChars.frag.out GLSL: Fix #822: Improve information given for syntax errors. 2017-04-20 12:21:53 -06:00
badMacroArgs.frag.out GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
comment.frag.out GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
compoundsuffix.frag.hlsl Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
compoundsuffix.vert.glsl Tests: Add usage and tests for previous commit. 2018-04-17 17:44:11 -06:00
conditionalDiscard.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
constantUnaryConversion.comp.out Add a bunch of missing cases to promoteConstantUnion. Use macros to expand all the cases more simply. 2019-06-22 22:28:25 -05:00
constErrors.frag.out Implement GL_NV_cooperative_matrix 2019-02-25 23:42:59 -06:00
constFold.frag.out Fix #2132: constant matrix constructor from single non-scalar argument 2020-03-19 16:46:30 -04:00
constFoldIntMin.frag.out SPV: Implement Vulkan 1.1 features and extensions. 2018-03-06 16:12:04 -07:00
conversion.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
cppBad.vert.out GL_EXT_debug_printf implementation 2020-03-05 13:41:34 -06:00
cppBad2.vert.out PP: Fix #1694: Rationalize errors on partially expanded macro argument. 2019-02-16 07:35:13 -07:00
cppBad3.vert.out PP: Fix #1694: Rationalize errors on partially expanded macro argument. 2019-02-16 07:35:13 -07:00
cppBad4.vert.out PP: Fix #1694: Rationalize errors on partially expanded macro argument. 2019-02-16 07:35:13 -07:00
cppBad5.vert.out PP: Fix #1694: Rationalize errors on partially expanded macro argument. 2019-02-16 07:35:13 -07:00
cppComplexExpr.vert.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
cppDeepNest.frag.out Remove execute permissions 2018-08-07 03:16:20 +09:00
cppIndent.vert.out GLSL: Fix #822: Improve information given for syntax errors. 2017-04-20 12:21:53 -06:00
cppIntMinOverNegativeOne.frag.out Tests: Non-determinancy: Add back in the IntMin tests. 2017-10-28 13:03:49 -06:00
cppMerge.frag.out PP: Fix #1605: Paste tokens for ## through number->letter transitions. 2019-02-22 08:54:38 -07:00
cppNest.vert.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
cppPassMacroName.frag.out Remove execute permissions 2018-08-07 03:16:20 +09:00
cppRelaxSkipTokensErrors.vert.out Remove execute permissions 2018-08-07 03:16:20 +09:00
cppSimple.vert.out GL_EXT_debug_printf implementation 2020-03-05 13:41:34 -06:00
dataOut.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
dataOutIndirect.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
dce.frag.out GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
decls.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
deepRvalue.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
depthOut.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
discard-dce.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
doWhileLoop.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
earlyReturnDiscard.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
empty.frag.out Check for linking multiple ES shaders to the same stage 2016-05-25 09:26:43 +02:00
errors.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
es-link1.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
findFunction.frag.out Rename GL_KHX_shader_explicit_arithmetic_types to GL_EXT_shader_explicit_arithmetic_types 2018-12-03 13:16:59 +01:00
flowControl.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
forLoop.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
forwardRef.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
functionCall.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
functionSemantics.frag.out GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
glsl.-D-U.frag.out Tests: Fix missing test result. 2017-06-15 11:10:57 -06:00
glsl.450.subgroup.frag.out GLSL/SPV: Pre SPIR-V 1.5, subgroupQuadBroadcast index must be constant 2019-10-14 23:08:26 -06:00
glsl.450.subgroup.geom.out Add support for GL_NV_shader_sm_builtins 2019-06-08 08:53:11 -04:00
glsl.450.subgroup.tesc.out Add support for GL_NV_shader_sm_builtins 2019-06-08 08:53:11 -04:00
glsl.450.subgroup.tese.out Add support for GL_NV_shader_sm_builtins 2019-06-08 08:53:11 -04:00
glsl.450.subgroup.vert.out Add support for GL_NV_shader_sm_builtins 2019-06-08 08:53:11 -04:00
glsl.450.subgroupArithmetic.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.450.subgroupBallot.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.450.subgroupBallotNeg.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.450.subgroupBasic.comp.out Add support for GL_NV_shader_sm_builtins 2019-06-08 08:53:11 -04:00
glsl.450.subgroupClustered.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.450.subgroupClusteredNeg.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.450.subgroupPartitioned.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.450.subgroupQuad.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.450.subgroupShuffle.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.450.subgroupShuffleRelative.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.450.subgroupVote.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.460.subgroup.mesh.out Add support for GL_NV_shader_sm_builtins 2019-06-08 08:53:11 -04:00
glsl.460.subgroup.rahit.out Add support for GL_NV_shader_sm_builtins 2019-06-08 08:53:11 -04:00
glsl.460.subgroup.rcall.out Add support for GL_NV_shader_sm_builtins 2019-06-08 08:53:11 -04:00
glsl.460.subgroup.rchit.out Add support for GL_NV_shader_sm_builtins 2019-06-08 08:53:11 -04:00
glsl.460.subgroup.rgen.out Add support for GL_NV_shader_sm_builtins 2019-06-08 08:53:11 -04:00
glsl.460.subgroup.rint.out Add support for GL_NV_shader_sm_builtins 2019-06-08 08:53:11 -04:00
glsl.460.subgroup.rmiss.out Add support for GL_NV_shader_sm_builtins 2019-06-08 08:53:11 -04:00
glsl.460.subgroup.task.out Add support for GL_NV_shader_sm_builtins 2019-06-08 08:53:11 -04:00
glsl.entryPointRename.vert.bad.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
glsl.entryPointRename.vert.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
glsl.entryPointRename2.vert.out GLSL: Promote HLSL entry-point renaming code to be used by GLSL as well. 2017-09-12 09:40:54 -06:00
glsl.es320.subgroup.frag.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.es320.subgroup.geom.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.es320.subgroup.tesc.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.es320.subgroup.tese.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.es320.subgroup.vert.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.es320.subgroupArithmetic.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.es320.subgroupBallot.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.es320.subgroupBallotNeg.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.es320.subgroupBasic.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.es320.subgroupClustered.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.es320.subgroupClusteredNeg.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.es320.subgroupPartitioned.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.es320.subgroupQuad.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.es320.subgroupShuffle.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.es320.subgroupShuffleRelative.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glsl.es320.subgroupVote.comp.out Fix subgroup support for ray tracing 2019-05-31 14:17:36 -04:00
glspv.esversion.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
glspv.frag.out Remove execute permissions 2018-08-07 03:16:20 +09:00
glspv.version.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
glspv.version.vert.out Remove execute permissions 2018-08-07 03:16:20 +09:00
glspv.vert.out Web: Turn off includes, independent preprocessing path, fine tune all. 2019-08-20 23:21:56 -06:00
hlsl.-D-U.frag.out Standalone: Implement -D and -U for preprocessor macros. 2017-06-15 10:57:18 -06:00
hlsl.aliasOpaque.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.amend.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.array.flatten.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.array.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.array.implicit-size.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.array.multidim.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.assoc.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.attribute.expression.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.attribute.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.attributeC11.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.attributeGlobalBuffer.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.automap.frag.out Fix treatment of array input/output variables in reflection 2019-02-11 16:39:12 +00:00
hlsl.basic.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.basic.geom.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.boolConv.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.buffer.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.calculatelod.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.calculatelodunclamped.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.cast.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.cbuffer-identifier.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.charLit.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clip.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-1.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-1.geom.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-1.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-2.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-2.geom.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-2.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-3.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-3.geom.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-3.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-4.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-4.geom.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-4.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-5.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-5.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-6.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-6.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-7.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-7.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-8.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-8.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-9.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.clipdistance-9.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.color.hull.tesc.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.comparison.vec.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.conditional.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.constantbuffer.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.constructArray.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.constructexpr.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.constructimat.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.coverage.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.dashI.vert.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
hlsl.deadFunctionMissingBody.vert.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
hlsl.depthGreater.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.depthLess.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.discard.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.doLoop.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.domain.1.tese.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.domain.2.tese.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.domain.3.tese.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.earlydepthstencil.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.emptystruct.init.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.emptystructreturn.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.emptystructreturn.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.entry-in.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.entry-out.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.entry.rename.frag.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
hlsl.explicitDescriptorSet-2.frag.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
hlsl.explicitDescriptorSet.frag.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
hlsl.flatten.return.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.flattenOpaque.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.flattenOpaqueInit.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.flattenOpaqueInitMix.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.flattenSubset.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.flattenSubset2.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.float1.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.float4.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.forLoop.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.format.rwtexture.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.frag.out HLSL: Map parameter qualifiers from generic to function-specific and entry-point specific. 2016-06-17 15:52:46 -06:00
hlsl.fraggeom.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.function.frag.out Remove execute permissions 2018-08-07 03:16:20 +09:00
hlsl.gather.array.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.gather.basic.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.gather.basic.dx10.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.gather.offset.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.gather.offsetarray.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.gathercmpRGBA.offset.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.gatherRGBA.array.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.gatherRGBA.basic.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.gatherRGBA.offset.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.gatherRGBA.offsetarray.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.getdimensions.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.getdimensions.dx10.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.getdimensions.rw.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.getsampleposition.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.global-const-init.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.groupid.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.gs-hs-mix.tesc.out HLSL: Fix #1974: ignore input primitives on non-entry-point functions. 2020-01-17 00:14:51 -07:00
hlsl.hlslOffset.vert.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
hlsl.hull.1.tesc.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.hull.2.tesc.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.hull.3.tesc.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.hull.4.tesc.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.hull.5.tesc.out HLSL: for split output structs, propagate indirection to builtin. 2017-12-12 16:22:48 -07:00
hlsl.hull.ctrlpt-1.tesc.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.hull.ctrlpt-2.tesc.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.hull.void.tesc.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.identifier.sample.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.if.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.imagefetch-subvec4.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.implicitBool.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.include.vert.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
hlsl.includeNegative.vert.out Remove execute permissions 2018-08-07 03:16:20 +09:00
hlsl.inf.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.init.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.init2.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.inoutquals.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.int.dot.frag.out HLSL: Fix #2037: Integer dot used incorrect input for adds. 2019-12-26 10:56:54 -07:00
hlsl.intrinsic.frexp.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.intrinsic.frexp.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.intrinsics.barriers.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.intrinsics.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.intrinsics.d3dcolortoubyte4.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.intrinsics.double.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.intrinsics.evalfns.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.intrinsics.f1632.frag.out Fix part of #2070: Correctly handle promotion for <unary-op>(int). 2020-02-18 06:53:39 -07:00
hlsl.intrinsics.f3216.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.intrinsics.frag.out HLSL: Fix #1960: fmod() was not converting int args to float. 2019-11-12 05:32:51 -07:00
hlsl.intrinsics.lit.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.intrinsics.negative.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.intrinsics.negative.frag.out HLSL: Force flat (nointerp) onto integer fragment inputs. 2017-06-20 03:20:59 -06:00
hlsl.intrinsics.negative.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.intrinsics.promote.down.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.intrinsics.promote.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.intrinsics.promote.outputs.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.intrinsics.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.isfinite.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.layout.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.layoutOverride.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.load.2dms.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.load.array.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.load.basic.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.load.basic.dx10.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.load.buffer.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.load.buffer.float.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.load.offset.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.load.offsetarray.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.load.rwbuffer.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.load.rwtexture.array.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.load.rwtexture.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.localStructuredBuffer.comp.out Test Results Only: Include size in implicitly sized arrays (change to unsized). 2018-03-25 14:05:38 -06:00
hlsl.logical.binary.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.logical.binary.vec.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.logical.unary.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.logicalConvert.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.loopattr.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.matNx1.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.matpack-1.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.matpack-pragma.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.matrixindex.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.matrixSwizzle.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.matType.bool.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.matType.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.matType.int.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.max.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.memberFunCall.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.mintypes.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.mip.negative.frag.out HLSL: add .mips[][] operator for texture types 2017-05-15 09:13:58 -06:00
hlsl.mip.negative2.frag.out HLSL: add .mips[][] operator for texture types 2017-05-15 09:13:58 -06:00
hlsl.mip.operator.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.mul-truncate.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.multiDescriptorSet.frag.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
hlsl.multiEntry.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.multiReturn.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.namespace.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.nonint-index.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.nonstaticMemberFunction.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.noSemantic.functionality1.comp.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
hlsl.numericsuffixes.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.numthreads.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.opaque-type-bug.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.overload.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.params.default.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.params.default.negative.frag.out HLSL: Emit the OpSource HLSL instruction for HLSL, using new headers. 2017-04-07 15:40:01 -06:00
hlsl.partialFlattenLocal.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.partialFlattenMixed.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.partialInit.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.PointSize.geom.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.PointSize.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.pp.expand.frag.err PP: Fix #155: Don't give error on HLSL PP-only parsing. 2018-10-25 12:43:02 -06:00
hlsl.pp.expand.frag.out Printing preprocessed shaders (not a supported path): Fix #1490: strings 2018-09-10 11:42:16 -06:00
hlsl.pp.line.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.pp.line2.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.pp.line3.frag.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
hlsl.pp.line4.frag.out Move to newer version of SPIRV-Tools 2020-05-14 11:06:05 -06:00
hlsl.pp.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.precedence.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.precedence2.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.precise.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.preprocessor.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.promote.atomic.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.promote.binary.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.promote.vec1.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.promotions.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.reflection.binding.frag.out Fix treatment of array input/output variables in reflection 2019-02-11 16:39:12 +00:00
hlsl.reflection.binding.vert.out add reflection queries to return a TType. Fix minor issue with interface names. 2016-10-02 16:57:58 -06:00
hlsl.reflection.vert.out Reserve unused std140 uniform block in reflection, and fix uniform block matrix layout (#2041) 2020-05-15 02:26:48 -06:00
hlsl.rw.atomics.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.rw.bracket.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.rw.register.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.rw.scalar.bracket.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.rw.swizzle.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.rw.vec2.bracket.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.sample.array.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.sample.basic.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.sample.dx9.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.sample.dx9.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.sample.offset.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.sample.offsetarray.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.sample.sub-vec4.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplebias.array.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplebias.basic.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplebias.offset.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplebias.offsetarray.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplecmp.array.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplecmp.basic.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplecmp.dualmode.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplecmp.negative.frag.out HLSL: force textures to shadow modes from combined samplers 2017-09-28 14:17:25 -06:00
hlsl.samplecmp.negative2.frag.out HLSL: add error for expected comparison sampler in SampleCmp* ops 2017-04-21 09:54:53 -06:00
hlsl.samplecmp.offset.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplecmp.offsetarray.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplecmplevelzero.array.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplecmplevelzero.basic.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplecmplevelzero.offset.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplecmplevelzero.offsetarray.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplegrad.array.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplegrad.basic.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplegrad.basic.dx10.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplegrad.offset.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplegrad.offsetarray.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplelevel.array.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplelevel.basic.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplelevel.basic.dx10.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplelevel.offset.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.samplelevel.offsetarray.dx10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.scalar-length.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.scalar2matrix.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.scalarCast.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.scope.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.self_cast.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.semantic-1.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.semantic.geom.out HLSL: Fix #1974: ignore input primitives on non-entry-point functions. 2020-01-17 00:14:51 -07:00
hlsl.semantic.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.semicolons.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.shapeConv.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.shapeConvRet.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.shift.per-set.frag.out Fix treatment of array input/output variables in reflection 2019-02-11 16:39:12 +00:00
hlsl.sin.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.singleArgIntPromo.vert.out Fix part of #2070: Correctly handle promotion for <unary-op>(int). 2020-02-18 06:53:39 -07:00
hlsl.snorm.uav.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.specConstant.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.staticFuncInit.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.staticMemberFunction.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.store.rwbyteaddressbuffer.type.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.string.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.stringtoken.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.struct.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.struct.split-1.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.struct.split.array.geom.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.struct.split.assign.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.struct.split.call.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.struct.split.nested.geom.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.struct.split.trivial.geom.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.struct.split.trivial.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.structarray.flatten.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.structarray.flatten.geom.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.structbuffer.append.fn.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.structbuffer.append.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.structbuffer.atomics.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.structbuffer.byte.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.structbuffer.coherent.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.structbuffer.floatidx.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.structbuffer.fn.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.structbuffer.fn2.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.structbuffer.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.structbuffer.incdec.frag.hlslfun1.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
hlsl.structbuffer.incdec.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.structbuffer.rw.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.structbuffer.rwbyte.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.structin.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.structIoFourWay.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.structStructName.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.subpass.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.switch.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.swizzle.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.synthesizeInput.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.target.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.targetStruct1.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.targetStruct2.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.templatetypes.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.texture.struct.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.texture.subvec4.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.texturebuffer.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.this.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.tristream-append.geom.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.tx.bracket.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.tx.overload.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.type.half.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.type.identifier.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.type.type.conversion.all.frag.out Updated type conversion rules for HLSL frontend 2018-11-14 08:13:32 +01:00
hlsl.type.type.conversion.valid.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.typedef.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.typeGraphCopy.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.void.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.wavebroadcast.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.waveprefix.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.wavequad.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.wavequery.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.wavequery.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.wavereduction.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.wavevote.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.whileLoop.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
hlsl.y-negate-1.vert.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
hlsl.y-negate-2.vert.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
hlsl.y-negate-3.vert.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
implicitInnerAtomicUint.frag.out Remove execute permissions 2018-08-07 03:16:20 +09:00
include.vert.out GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
invalidSwizzle.vert.out Only try swizzles on vectors, numbers, and booleans. 2017-10-21 19:54:37 +00:00
length.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
lineContinuation.vert.out Testing: Add new tests, and new ways of testing, for floating-point. 2018-05-24 18:18:22 -06:00
lineContinuation100.vert.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
link.multiAnonBlocksInvalid.0.0.vert.out Shader interface matching rework to fix #2136 (#2156) 2020-04-02 02:03:53 -06:00
link.multiAnonBlocksValid.0.0.vert.out Shader interface matching rework to fix #2136 (#2156) 2020-04-02 02:03:53 -06:00
link.multiBlocksInvalid.0.0.vert.out Shader interface matching rework to fix #2136 (#2156) 2020-04-02 02:03:53 -06:00
link.multiBlocksValid.1.0.vert.out Shader interface matching rework to fix #2136 (#2156) 2020-04-02 02:03:53 -06:00
link.vk.differentPC.0.0.frag.out Fix #2005. Allow multiple compilation units to declare identical push_constant blocks (#2123) 2020-03-16 08:51:15 -06:00
link.vk.differentPC.1.0.frag.out Fix #2005. Allow multiple compilation units to declare identical push_constant blocks (#2123) 2020-03-16 08:51:15 -06:00
link.vk.matchingPC.0.0.frag.out Fix #2005. Allow multiple compilation units to declare identical push_constant blocks (#2123) 2020-03-16 08:51:15 -06:00
link.vk.multiBlocksValid.0.0.vert.out Shader interface matching rework to fix #2136 (#2156) 2020-04-02 02:03:53 -06:00
link.vk.multiBlocksValid.1.0.geom.out Shader interface matching rework to fix #2136 (#2156) 2020-04-02 02:03:53 -06:00
link.vk.pcNamingInvalid.0.0.vert.out Shader interface matching rework to fix #2136 (#2156) 2020-04-02 02:03:53 -06:00
link.vk.pcNamingValid.0.0.vert.out Shader interface matching rework to fix #2136 (#2156) 2020-04-02 02:03:53 -06:00
link1.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
link1.vk.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
localAggregates.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
loops.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
loopsArtificial.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
mains1.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
matrix.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
matrix2.frag.out GLSL: Fix #1247. Remove extraneous *= matrix test. 2018-02-15 12:22:25 -07:00
matrixError.vert.out GLSL: Fix #1247. Remove extraneous *= matrix test. 2018-02-15 12:22:25 -07:00
max_vertices_0.geom.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
maxClipDistances.vert.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
missingBodies.vert.out Remove execute permissions 2018-08-07 03:16:20 +09:00
mixedArrayDecls.frag.out Remove execute permissions 2018-08-07 03:16:20 +09:00
negativeArraySize.comp.out Implement GL_NV_cooperative_matrix 2019-02-25 23:42:59 -06:00
newTexture.frag.out GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
noMain.vert.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
nonSquare.vert.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
nonuniform.frag.out GLSL/SPV: Fix #1900: Drop const on literal when doing an object copy. 2019-09-20 06:08:49 -06:00
nonVulkan.frag.out GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
nosuffix.out Fix #777: don't parse .suffix if <stage> is provided. 2017-03-16 11:30:20 -06:00
numeral.frag.out Testing: Add new tests, and new ways of testing, for floating-point. 2018-05-24 18:18:22 -06:00
nvShaderNoperspectiveInterpolation.frag.out Add tests for GL_NV_shader_noperspective_interpolation 2018-03-16 16:49:29 +00:00
Operations.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
overlongLiteral.frag.out Check for hexadecimal literals exceeding MaxTokenLength. 2017-10-22 17:55:14 +00:00
pointCoord.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
precise.tesc.out GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
precise_struct_block.vert.out GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
precision.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
precision.vert.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
prepost.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
preprocessor.bad_arg.vert.err PP: Rationalize return values of MacroExpand. 2018-07-02 13:47:31 -06:00
preprocessor.bad_arg.vert.out PP: Rationalize return values of MacroExpand. 2018-07-02 13:47:31 -06:00
preprocessor.cpp_style___FILE__.vert.err Extend the syntax of #line and __FILE__ to support filename strings. 2015-07-27 13:07:52 -04:00
preprocessor.cpp_style___FILE__.vert.out Tests: Move to just linefeed to simply cross-platform test changes. 2015-12-10 18:01:54 -07:00
preprocessor.cpp_style_line_directive.vert.err Tests: Move to just linefeed to simply cross-platform test changes. 2015-12-10 18:01:54 -07:00
preprocessor.cpp_style_line_directive.vert.out Extend the syntax of #line and __FILE__ to support filename strings. 2015-07-27 13:07:52 -04:00
preprocessor.defined.vert.err Tests: Move to just linefeed to simply cross-platform test changes. 2015-12-10 18:01:54 -07:00
preprocessor.defined.vert.out 'defined' cannot be used as a macro name in #define or #undef. 2015-08-29 23:15:13 +00:00
preprocessor.edge_cases.vert.err GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
preprocessor.edge_cases.vert.out Tests: Move to just linefeed to simply cross-platform test changes. 2015-12-10 18:01:54 -07:00
preprocessor.eof_missing.vert.err add .err file for eof_missing test 2016-04-27 10:22:22 -04:00
preprocessor.eof_missing.vert.out Fix the infinite loop when an input file lacks EOF 2016-04-27 10:05:57 -04:00
preprocessor.errors.vert.err GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
preprocessor.errors.vert.out Added error output to the preprocessor. 2015-07-14 16:02:25 -04:00
preprocessor.extensions.vert.err GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
preprocessor.extensions.vert.out Tests: Move to just linefeed to simply cross-platform test changes. 2015-12-10 18:01:54 -07:00
preprocessor.function_macro.vert.err GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
preprocessor.function_macro.vert.out Tests: Move to just linefeed to simply cross-platform test changes. 2015-12-10 18:01:54 -07:00
preprocessor.include.disabled.vert.err External interface change: PP: Full <> and "" semantics for the Includer. 2017-01-06 15:08:54 -07:00
preprocessor.include.disabled.vert.out Use extension framework to enable #include directive. 2015-07-31 19:41:19 -04:00
preprocessor.include.enabled.vert.err External interface change: PP: Full <> and "" semantics for the Includer. 2017-01-06 15:08:54 -07:00
preprocessor.include.enabled.vert.out Use extension framework to enable #include directive. 2015-07-31 19:41:19 -04:00
preprocessor.line.frag.err GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
preprocessor.line.frag.out Tests: Move to just linefeed to simply cross-platform test changes. 2015-12-10 18:01:54 -07:00
preprocessor.line.vert.err Added error output to the preprocessor. 2015-07-14 16:02:25 -04:00
preprocessor.line.vert.out Tests: Move to just linefeed to simply cross-platform test changes. 2015-12-10 18:01:54 -07:00
preprocessor.many.endif.vert.err Fix array out of bounds bug in processing if-else-endif macros. 2016-03-09 15:11:56 -05:00
preprocessor.many.endif.vert.out Fix array out of bounds bug in processing if-else-endif macros. 2016-03-09 15:11:56 -05:00
preprocessor.pragma.vert.err Warning for #pragma once. GLSL and HLSL. Addresses #824. 2018-02-11 23:23:22 -07:00
preprocessor.pragma.vert.out Warning for #pragma once. GLSL and HLSL. Addresses #824. 2018-02-11 23:23:22 -07:00
preprocessor.simple.vert.err GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
preprocessor.simple.vert.out Fix #1563: Corrupt token when an object macro miscalls a function macro 2018-11-07 18:25:56 -07:00
preprocessor.success_if_parse_would_fail.vert.err Added error output to the preprocessor. 2015-07-14 16:02:25 -04:00
preprocessor.success_if_parse_would_fail.vert.out Tests: Move to just linefeed to simply cross-platform test changes. 2015-12-10 18:01:54 -07:00
rayQuery-allOps.comp.out Add support for EXT_ray_flags_primitive_culling. (#2173) 2020-04-08 22:09:20 -06:00
rayQuery-allOps.Error.rgen.out rayQuery test cases added 2020-03-23 21:34:09 -04:00
rayQuery-allOps.frag.out pass by reference updates 2020-03-26 12:24:31 -04:00
rayQuery-allOps.rgen.out pass by reference updates 2020-03-26 12:24:31 -04:00
rayQuery-committed.Error.rgen.out rayQuery test cases added 2020-03-23 21:34:09 -04:00
rayQuery-initialize.rgen.out pass by reference updates 2020-03-26 12:24:31 -04:00
rayQuery-no-cse.rgen.out pass by reference updates 2020-03-26 12:24:31 -04:00
rayQuery.rgen.out accelerationStructureEXT - issue #2152 2020-03-26 18:51:18 -04:00
recurse1.vert.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
reflection.frag.out Add option to reflect buffer blocks & variables separately to uniforms 2019-02-04 12:02:59 +00:00
reflection.linked.options.out Add option to unwrap I/O block aggregates in reflection 2019-02-11 11:53:52 +00:00
reflection.linked.out Fix treatment of array input/output variables in reflection 2019-02-11 16:39:12 +00:00
reflection.options.frag.out Add option to unwrap I/O block aggregates in reflection 2019-02-11 11:53:52 +00:00
reflection.options.geom.out Add option to unwrap I/O block aggregates in reflection 2019-02-11 11:53:52 +00:00
reflection.options.vert.out Dereference any array type before expanding root-level SSBO members 2019-08-26 12:59:38 +01:00
reflection.vert.out Reserve unused std140 uniform block in reflection, and fix uniform block matrix layout (#2041) 2020-05-15 02:26:48 -06:00
remap.basic.dcefunc.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.basic.dcevartype.frag.out WIP: SPV Remapper: add remapper test framework 2016-08-25 10:46:51 -06:00
remap.basic.everything.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.basic.none.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.basic.strip.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.hlsl.sample.basic.everything.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.hlsl.sample.basic.none.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.hlsl.sample.basic.strip.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.hlsl.templatetypes.everything.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.hlsl.templatetypes.none.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.if.everything.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.if.none.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.invalid-spirv-1.out Remapper: make remapper robust against non-exiting error handlers 2017-09-20 15:19:43 -06:00
remap.invalid-spirv-2.out Remapper: make remapper robust against non-exiting error handlers 2017-09-20 15:19:43 -06:00
remap.literal64.everything.spv.out WIP: SPV Remapper: add remapper test framework 2016-08-25 10:46:51 -06:00
remap.literal64.none.spv.out Add bit width of types to disassembleInstruction 2018-05-24 21:08:20 -05:00
remap.similar_1a.everything.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.similar_1a.none.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.similar_1b.everything.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.similar_1b.none.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.specconst.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.switch.everything.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.switch.none.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.uniformarray.everything.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
remap.uniformarray.none.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
runtimeArray.vert.out Remove execute permissions 2018-08-07 03:16:20 +09:00
sample.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
sample.vert.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
samplerlessTextureFunctions.frag.out Add support for GL_EXT_samplerless_texture_functions 2018-07-01 10:58:53 +01:00
simpleFunctionCall.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
size Web: Reclaim more space and make all work w/wo GLSLANG_WEB. 2019-10-23 03:15:55 -06:00
specExamples.frag.out Test Results Only: Include size in implicitly sized arrays (change to unsized). 2018-03-25 14:05:38 -06:00
specExamples.vert.out GLSL: Inherit memory qualifiers, both declaratively and in execution. 2019-08-22 08:54:22 -06:00
specExamplesConf.vert.out GLSL: Inherit memory qualifiers, both declaratively and in execution. 2019-08-22 08:54:22 -06:00
spv.1.3.8bitstorage-ssbo.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.1.3.8bitstorage-ubo.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.1.3.coopmat.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.1.4.constructComposite.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.1.4.image.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.1.4.LoopControl.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.1.4.NonWritable.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.1.4.OpCopyLogical.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.1.4.OpCopyLogical.funcall.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.1.4.OpCopyLogicalBool.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.1.4.OpEntryPoint.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.1.4.OpSelect.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.1.4.sparseTexture.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.1.4.texture.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.8bit-16bit-construction.frag.out Add a test for 8- and 16-bit construction. 2019-11-14 14:41:52 +01:00
spv.8bitstorage-int.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.8bitstorage-ssbo.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.8bitstorage-ubo.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.8bitstorage-uint.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.8bitstorage_Error-int.frag.out Rename GL_KHX_shader_explicit_arithmetic_types to GL_EXT_shader_explicit_arithmetic_types 2018-12-03 13:16:59 +01:00
spv.8bitstorage_Error-uint.frag.out Rename GL_KHX_shader_explicit_arithmetic_types to GL_EXT_shader_explicit_arithmetic_types 2018-12-03 13:16:59 +01:00
spv.16bitstorage-int.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.16bitstorage-uint.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.16bitstorage.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.16bitstorage_Error-int.frag.out Rename GL_KHX_shader_explicit_arithmetic_types to GL_EXT_shader_explicit_arithmetic_types 2018-12-03 13:16:59 +01:00
spv.16bitstorage_Error-uint.frag.out Rename GL_KHX_shader_explicit_arithmetic_types to GL_EXT_shader_explicit_arithmetic_types 2018-12-03 13:16:59 +01:00
spv.16bitstorage_Error.frag.out Rename GL_KHX_shader_explicit_arithmetic_types to GL_EXT_shader_explicit_arithmetic_types 2018-12-03 13:16:59 +01:00
spv.16bitxfb.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.100ops.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.130.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.140.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.150.geom.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.150.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.300BuiltIns.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.300layout.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.300layout.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.300layoutp.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.310.bitcast.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.310.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.320.meshShaderUserDefined.mesh.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.330.geom.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.400.frag.nanclamp.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
spv.400.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.400.tesc.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.400.tese.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.420.geom.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.430.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.430.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.450.geom.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.450.noRedecl.tesc.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.450.tesc.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.460.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.460.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.460.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.accessChain.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.aggOps.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.always-discard.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.always-discard2.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.AnyHitShader.rahit.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.AnyHitShader_Errors.rahit.out Multiple features and misc fixes for final raytracing non experimental version. 2018-10-31 07:55:24 -07:00
spv.AofA.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.arbPostDepthCoverage.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.arbPostDepthCoverage_Error.frag.out Implement SPV_KHR_post_depth_coverage 2017-07-05 12:27:15 -07:00
spv.atomic.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.atomicCounter.comp.out Forbid memoryBarrierAtomicCounter for Vulkan compiles 2020-03-16 23:53:04 -05:00
spv.atomicInt64.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.barrier.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bitCast.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bool.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.boolInBlock.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.branch-return.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.buffer.autoassign.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bufferhandle1.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bufferhandle2.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bufferhandle3.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bufferhandle4.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bufferhandle5.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bufferhandle6.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bufferhandle7.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bufferhandle8.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bufferhandle9.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bufferhandle10.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bufferhandle11.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bufferhandle12.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bufferhandle13.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bufferhandle14.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bufferhandle15.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bufferhandle16.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bufferhandle17_Errors.frag.out Handle buffer references vs 'const' 2019-03-04 12:46:11 -06:00
spv.bufferhandle18.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.bufferhandle19_Errors.frag.out Add support for GL_EXT_buffer_reference2 2019-05-01 16:13:26 -05:00
spv.bufferhandle_Error.frag.out Fix #2191: Error check for indexing reference containing unsize array. 2020-05-01 08:19:59 -06:00
spv.bufferhandleUvec2.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.builtInXFB.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.ClosestHitShader.rchit.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.ClosestHitShader_Errors.rchit.out Multiple features and misc fixes for final raytracing non experimental version. 2018-10-31 07:55:24 -07:00
spv.computeShaderDerivatives.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.computeShaderDerivatives2.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.conditionalDemote.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.conditionalDiscard.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.constConstruct.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.constructComposite.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.constStruct.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.controlFlowAttributes.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.conversion.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.coopmat.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.coopmat_Error.comp.out Implement GL_NV_cooperative_matrix 2019-02-25 23:42:59 -06:00
spv.dataOut.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.dataOutIndirect.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.dataOutIndirect.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.dead-after-continue.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.dead-after-discard.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.dead-after-loop-break.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.dead-after-return.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.dead-after-switch-break.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.dead-complex-continue-after-return.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.dead-complex-merge-after-return.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.debugInfo.1.1.frag.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
spv.debugInfo.frag.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
spv.debugPrintf.frag.out EXT_debug_printf - make escape sequences better match C/C++ 2020-03-10 10:23:07 -05:00
spv.debugPrintf_Error.frag.out EXT_debug_printf - make escape sequences better match C/C++ 2020-03-10 10:23:07 -05:00
spv.deepRvalue.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.demoteDisabled.frag.out Implement GL_EXT_demote_to_helper_invocation 2019-07-01 09:36:15 -05:00
spv.depthOut.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.deviceGroup.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.discard-dce.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.do-simple.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.do-while-continue-break.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.double.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.doWhileLoop.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.drawParams.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.earlyReturnDiscard.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.explicittypes.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.ext.AnyHitShader.rahit.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.ext.AnyHitShader_Errors.rahit.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.ext.ClosestHitShader.rchit.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.ext.ClosestHitShader_Errors.rchit.out Add support for EXT_ray_flags_primitive_culling. (#2173) 2020-04-08 22:09:20 -06:00
spv.ext.IntersectShader.rint.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.ext.IntersectShader_Errors.rint.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.ext.MissShader.rmiss.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.ext.MissShader_Errors.rmiss.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.ext.RayCallable.rcall.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.ext.RayCallable_Errors.rcall.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.ext.RayConstants.rgen.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.ext.RayGenShader.rgen.out Add support for EXT_ray_flags_primitive_culling. (#2173) 2020-04-08 22:09:20 -06:00
spv.ext.RayGenShader11.rgen.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.ext.RayGenShader_Errors.rgen.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.ext.RayGenShaderArray.rgen.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.extPostDepthCoverage.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.extPostDepthCoverage_Error.frag.out Implement SPV_KHR_post_depth_coverage 2017-07-05 12:27:15 -07:00
spv.float16.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.float16convertonlyarith.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.float16convertonlystorage.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.float16Fetch.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.float32.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.float64.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.flowControl.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.for-complex-condition.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.for-continue-break.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.for-nobody.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.for-notest.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.for-simple.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.forLoop.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.forwardFun.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.fragmentDensity-es.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.fragmentDensity-neg.frag.out Implement GL_EXT_fragment_invocation_density 2018-11-26 10:01:58 -05:00
spv.fragmentDensity.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.fragmentDensity.vert.out Implement GL_EXT_fragment_invocation_density 2018-11-26 10:01:58 -05:00
spv.fragmentShaderBarycentric.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.fragmentShaderBarycentric2.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.fsi.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.fsi_Error.frag.out Support GL_ARB_fragment_shader_interlock 2019-06-03 11:55:25 -05:00
spv.fullyCovered.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.functionCall.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.functionNestedOpaque.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.functionParameterTypes.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.functionSemantics.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.GeometryShaderPassthrough.geom.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.glFragColor.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.glsl.register.autoassign.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.glsl.register.noautoassign.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.hlslDebugInfo.frag.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
spv.hlslOffsets.vert.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
spv.image.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.image.load-formatted.frag.out Implement GL_EXT_shader_image_load_formatted 2017-02-17 13:36:25 -08:00
spv.imageLoadStoreLod.frag.out SPV_AMD_shader_image_load_store_lod is now validated by spirv-tools 2020-02-20 06:57:49 +01:00
spv.int8.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.int16.amd.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.int16.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.int32.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.int64.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.intcoopmat.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.interpOps.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.IntersectShader.rint.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.IntersectShader_Errors.rint.out Multiple features and misc fixes for final raytracing non experimental version. 2018-10-31 07:55:24 -07:00
spv.intOps.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.layoutNested.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.length.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.localAggregates.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.loops.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.loopsArtificial.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.looseUniformNoLoc.vert.out SPV: Add auto location mapping of non-opaque non-block uniform variables. 2017-08-26 15:47:25 -06:00
spv.matFun.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.matrix.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.matrix2.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.memoryQualifier.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.memoryScopeSemantics.comp.out Fix an issue of SPV generation for imageAtomicStore. 2020-02-22 22:04:31 +08:00
spv.memoryScopeSemantics_Error.comp.out Add gl_SemanticsVolatile to GL_KHR_memory_scope_semantics, and make volatile-qualified atomics generate MemorySemanticsVolatile when using the Vulkan memory model 2019-06-14 09:57:01 -05:00
spv.merge-unreachable.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.meshShaderBuiltins.mesh.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.meshShaderPerView_Errors.mesh.out Allow unsized view array dimension for non-block perviewNV attributes 2019-07-15 16:14:00 -07:00
spv.meshShaderPerViewBuiltins.mesh.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.meshShaderPerViewUserDefined.mesh.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.meshShaderRedeclBuiltins.mesh.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.meshShaderRedeclPerViewBuiltins.mesh.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.meshShaderSharedMem.mesh.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.meshShaderTaskMem.mesh.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.meshShaderUserDefined.mesh.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.meshTaskShader.task.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.MissShader.rmiss.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.MissShader_Errors.rmiss.out Multiple features and misc fixes for final raytracing non experimental version. 2018-10-31 07:55:24 -07:00
spv.multiStruct.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.multiStructFuncall.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.multiView.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.multiviewPerViewAttributes.tesc.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.multiviewPerViewAttributes.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.newTexture.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.noBuiltInLoc.vert.out Tests: Add more test results for the previous generator version bump. 2019-11-03 00:22:47 -06:00
spv.noDeadDecorations.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.noLocation.vert.out GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
spv.nonSquare.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.nonuniform.frag.out Decorate accesschain operand for nonuniform UBO loads 2020-03-09 14:09:41 -05:00
spv.nonuniform2.frag.out Decorate accesschain operand for nonuniform UBO loads 2020-03-09 14:09:41 -05:00
spv.nonuniform3.frag.out Decorate accesschain operand for nonuniform UBO loads 2020-03-09 14:09:41 -05:00
spv.nonuniform4.frag.out Allow nonuniformEXT() on sampler types. 2020-03-09 10:48:12 -05:00
spv.nonuniform5.frag.out Decorate accesschain operand for nonuniform UBO loads 2020-03-09 14:09:41 -05:00
spv.noWorkgroup.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.offsets.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.Operations.frag.out Support multiple swizzled out operands (#2175) 2020-04-13 21:59:49 -06:00
spv.OVR_multiview.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.paramMemory.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.perprimitiveNV.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.pp.line.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.precise.tesc.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.precise.tese.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.precision.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.precisionNonESSamp.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.prepost.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.privateVariableTypes.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.pushConstant.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.pushConstantAnon.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.qualifiers.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.queryL.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.rankShift.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.RayCallable.rcall.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.RayCallable_Errors.rcall.out Callables shouldn't have incoming ray flags 2019-03-25 17:09:13 -07:00
spv.RayConstants.rgen.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.RayGenShader.rgen.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.RayGenShader11.rgen.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.RayGenShader_Errors.rgen.out Error out writes to shaderRecordNV buffer blocks. 2019-03-04 11:05:55 -08:00
spv.RayGenShaderArray.rgen.out Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
spv.register.autoassign-2.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.register.autoassign.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.register.autoassign.rangetest.frag.out Don't print the "Linked stage" message unless the AST is being dumped. 2016-12-03 13:59:51 -07:00
spv.register.noautoassign.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.register.subpass.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.rw.autoassign.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.sample.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.sampleId.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.sampleMaskOverrideCoverage.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.samplePosition.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.samplerlessTextureFunctions.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.scalarlayout.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.scalarlayoutfloat16.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.separate.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.set.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.shaderBallot.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.shaderBallotAMD.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.shaderDrawParams.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.shaderFragMaskAMD.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.shaderGroupVote.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.shaderImageFootprint.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.shaderStencilExport.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.shadingRate.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.shiftOps.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.shortCircuit.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.simpleFunctionCall.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.simpleMat.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.smBuiltins.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.smBuiltins.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.sparseTexture.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.sparseTextureClamp.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.specConst.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.specConstant.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.specConstant.vert.out Add support for extension GL_EXT_shader_integer_mix (#2203) 2020-04-30 22:41:33 -06:00
spv.specConstantComposite.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.specConstantOperations.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.specConstArrayCheck.vert.out SPV: Fix #1783: Don't do bounds checking for spec-const-expression size 2019-07-03 09:37:25 -06:00
spv.specTexture.frag.out Fix #2178: Allow specialization constants for texel offsets. 2020-04-12 22:57:07 -06:00
spv.ssbo.autoassign.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.ssboAlias.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.stereoViewRendering.tesc.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.stereoViewRendering.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.storageBuffer.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.structAssignment.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.structDeref.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.structure.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroup.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroup.geom.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroup.tesc.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroup.tese.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroup.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroupArithmetic.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroupBallot.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroupBallotNeg.comp.out Remove Unix executable permission from text files 2018-12-10 10:49:16 +01:00
spv.subgroupBasic.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroupClustered.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroupClusteredNeg.comp.out Remove execute permissions 2018-08-07 03:16:20 +09:00
spv.subgroupExtendedTypesArithmetic.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroupExtendedTypesArithmeticNeg.comp.out Add GL_EXT_shader_subgroup_extended_types support 2019-09-17 23:44:27 -05:00
spv.subgroupExtendedTypesBallot.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroupExtendedTypesBallotNeg.comp.out Add GL_EXT_shader_subgroup_extended_types support 2019-09-17 23:44:27 -05:00
spv.subgroupExtendedTypesBasic.comp.out Add GL_EXT_shader_subgroup_extended_types support 2019-09-17 23:44:27 -05:00
spv.subgroupExtendedTypesClustered.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroupExtendedTypesClusteredNeg.comp.out Add GL_EXT_shader_subgroup_extended_types support 2019-09-17 23:44:27 -05:00
spv.subgroupExtendedTypesPartitioned.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroupExtendedTypesPartitionedNeg.comp.out Add GL_EXT_shader_subgroup_extended_types support 2019-09-17 23:44:27 -05:00
spv.subgroupExtendedTypesQuad.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroupExtendedTypesQuadNeg.comp.out Add GL_EXT_shader_subgroup_extended_types support 2019-09-17 23:44:27 -05:00
spv.subgroupExtendedTypesShuffle.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroupExtendedTypesShuffleNeg.comp.out Add GL_EXT_shader_subgroup_extended_types support 2019-09-17 23:44:27 -05:00
spv.subgroupExtendedTypesShuffleRelative.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroupExtendedTypesShuffleRelativeNeg.comp.out Add GL_EXT_shader_subgroup_extended_types support 2019-09-17 23:44:27 -05:00
spv.subgroupExtendedTypesVote.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroupExtendedTypesVoteNeg.comp.out Add GL_EXT_shader_subgroup_extended_types support 2019-09-17 23:44:27 -05:00
spv.subgroupPartitioned.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroupQuad.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroupShuffle.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroupShuffleRelative.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subgroupVote.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.subpass.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.switch.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.swizzle.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.swizzleInversion.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.test.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.test.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.texture.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.texture.sampler.transform.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.texture.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.textureBuffer.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.textureGatherBiasLod.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.types.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.uint.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.uniformArray.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.unit1.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.variableArrayIndex.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.varyingArray.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.varyingArrayIndirect.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.vecMatConstruct.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.viewportArray2.tesc.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.viewportArray2.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.voidFunction.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.volatileAtomic.comp.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.vulkan100.subgroupArithmetic.comp.out Remove execute permissions 2018-08-07 03:16:20 +09:00
spv.vulkan100.subgroupPartitioned.comp.out Remove execute permissions 2018-08-07 03:16:20 +09:00
spv.vulkan110.int16.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.vulkan110.storageBuffer.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.while-continue-break.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.while-simple.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.whileLoop.frag.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.xfb.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.xfb2.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.xfb3.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.xfbOffsetOnBlockMembersAssignment.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.xfbOffsetOnStructMembersAssignment.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.xfbOverlapOffsetCheckWithBlockAndMember.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
spv.xfbStrideJustOnce.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
stringToDouble.vert.out Rename GL_KHX_shader_explicit_arithmetic_types to GL_EXT_shader_explicit_arithmetic_types 2018-12-03 13:16:59 +01:00
structAssignment.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
structDeref.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
structure.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
switch.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
swizzle.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
syntaxError.frag.out GLSL: Fix #822: Improve information given for syntax errors. 2017-04-20 12:21:53 -06:00
test.conf Add support for es extension GL_EXT_blend_func_extended 2020-04-30 23:21:14 -07:00
test.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
texture.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
tokenLength.vert.out Scanner: Many int64 fixes, including performance. 2018-01-08 11:52:23 -07:00
tokenPaste.vert.out Remove execute permissions 2018-08-07 03:16:20 +09:00
types.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
uint.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
uniformArray.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
variableArrayIndex.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
varyingArray.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
varyingArrayIndirect.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
versionsClean.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
versionsClean.vert.out Test Results Only: Include size in implicitly sized arrays (change to unsized). 2018-03-25 14:05:38 -06:00
versionsErrors.frag.out Add support for extension GL_EXT_shader_implicit_conversions 2020-04-30 08:41:23 -07:00
versionsErrors.vert.out Test Results Only: Include size in implicitly sized arrays (change to unsized). 2018-03-25 14:05:38 -06:00
voidFunction.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00
vulkan.ast.vert.out Bump up the generator version, which is exposed in SPV test results. 2019-11-02 21:26:40 -06:00
vulkan.comp.out GLSL: replace general missing functionality with specific messages. 2017-06-05 16:42:33 -06:00
vulkan.frag.out Error message: Finish addressing #2097, better texture error message. 2020-04-07 02:18:23 -06:00
vulkan.vert.out Fix #1759: Check for specialization constants when literals required. 2019-05-03 08:40:35 -06:00
web.array.frag.out HLSL: Fix #1976: Don't let ENABLE_HLSL change struct/class layout. 2019-11-15 05:01:27 -07:00
web.basic.vert.out HLSL: Fix #1976: Don't let ENABLE_HLSL change struct/class layout. 2019-11-15 05:01:27 -07:00
web.builtins.frag.out HLSL: Fix #1976: Don't let ENABLE_HLSL change struct/class layout. 2019-11-15 05:01:27 -07:00
web.builtins.vert.out HLSL: Fix #1976: Don't let ENABLE_HLSL change struct/class layout. 2019-11-15 05:01:27 -07:00
web.comp.out HLSL: Fix #1976: Don't let ENABLE_HLSL change struct/class layout. 2019-11-15 05:01:27 -07:00
web.controlFlow.frag.out HLSL: Fix #1976: Don't let ENABLE_HLSL change struct/class layout. 2019-11-15 05:01:27 -07:00
web.operations.frag.out HLSL: Fix #1976: Don't let ENABLE_HLSL change struct/class layout. 2019-11-15 05:01:27 -07:00
web.separate.frag.out HLSL: Fix #1976: Don't let ENABLE_HLSL change struct/class layout. 2019-11-15 05:01:27 -07:00
web.texture.frag.out HLSL: Fix #1976: Don't let ENABLE_HLSL change struct/class layout. 2019-11-15 05:01:27 -07:00
whileLoop.frag.out GLSL output: Removed fixed-size buffer; fixes #769. 2017-03-14 19:51:29 -06:00