--- .../different-uniform-array-size.shader_test | 130 +++++++++++++++++++++ .../uniform/different-uniform-type.shader_test | 129 ++++++++++++++++++++ 2 files changed, 259 insertions(+) create mode 100644 tests/spec/arb_gl_spirv/linker/uniform/different-uniform-array-size.shader_test create mode 100644 tests/spec/arb_gl_spirv/linker/uniform/different-uniform-type.shader_test
diff --git a/tests/spec/arb_gl_spirv/linker/uniform/different-uniform-array-size.shader_test b/tests/spec/arb_gl_spirv/linker/uniform/different-uniform-array-size.shader_test new file mode 100644 index 000000000..d95d2e029 --- /dev/null +++ b/tests/spec/arb_gl_spirv/linker/uniform/different-uniform-array-size.shader_test @@ -0,0 +1,130 @@ +# Test a very simple VS-PS where the same uniform (same location) is +# defined with different array size on each stage. + +[require] +SPIRV YES +GL >= 3.3 +GLSL >= 4.50 + +[vertex shader spirv] +; Automatically generated from the GLSL by shader_test_spirv.py. DO NOT EDIT +; SPIR-V +; Version: 1.0 +; Generator: Khronos Glslang Reference Front End; 6 +; Bound: 28 +; Schema: 0 + OpCapability Shader + %1 = OpExtInstImport "GLSL.std.450" + OpMemoryModel Logical GLSL450 + OpEntryPoint Vertex %main "main" %_ %piglit_vertex %gl_VertexID %gl_InstanceID + OpSource GLSL 450 + OpName %main "main" + OpName %gl_PerVertex "gl_PerVertex" + OpMemberName %gl_PerVertex 0 "gl_Position" + OpMemberName %gl_PerVertex 1 "gl_PointSize" + OpMemberName %gl_PerVertex 2 "gl_ClipDistance" + OpMemberName %gl_PerVertex 3 "gl_CullDistance" + OpName %_ "" + OpName %piglit_vertex "piglit_vertex" + OpName %color "color" + OpName %gl_VertexID "gl_VertexID" + OpName %gl_InstanceID "gl_InstanceID" + OpMemberDecorate %gl_PerVertex 0 BuiltIn Position + OpMemberDecorate %gl_PerVertex 1 BuiltIn PointSize + OpMemberDecorate %gl_PerVertex 2 BuiltIn ClipDistance + OpMemberDecorate %gl_PerVertex 3 BuiltIn CullDistance + OpDecorate %gl_PerVertex Block + OpDecorate %piglit_vertex Location 0 + OpDecorate %color Location 0 + OpDecorate %color DescriptorSet 0 + OpDecorate %gl_VertexID BuiltIn VertexId + OpDecorate %gl_InstanceID BuiltIn InstanceId + %void = OpTypeVoid + %3 = OpTypeFunction %void + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 + %uint = OpTypeInt 32 0 + %uint_1 = OpConstant %uint 1 +%_arr_float_uint_1 = OpTypeArray %float %uint_1 +%gl_PerVertex = OpTypeStruct %v4float %float %_arr_float_uint_1 %_arr_float_uint_1 +%_ptr_Output_gl_PerVertex = OpTypePointer Output %gl_PerVertex + %_ = OpVariable %_ptr_Output_gl_PerVertex Output + %int = OpTypeInt 32 1 + %int_0 = OpConstant %int 0 +%_ptr_Input_v4float = OpTypePointer Input %v4float +%piglit_vertex = OpVariable %_ptr_Input_v4float Input +%_ptr_Output_v4float = OpTypePointer Output %v4float + %uint_2 = OpConstant %uint 2 +%_arr_v4float_uint_2 = OpTypeArray %v4float %uint_2 +%_ptr_UniformConstant__arr_v4float_uint_2 = OpTypePointer UniformConstant %_arr_v4float_uint_2 + %color = OpVariable %_ptr_UniformConstant__arr_v4float_uint_2 UniformConstant +%_ptr_Input_int = OpTypePointer Input %int +%gl_VertexID = OpVariable %_ptr_Input_int Input +%gl_InstanceID = OpVariable %_ptr_Input_int Input + %main = OpFunction %void None %3 + %5 = OpLabel + %18 = OpLoad %v4float %piglit_vertex + %20 = OpAccessChain %_ptr_Output_v4float %_ %int_0 + OpStore %20 %18 + OpReturn + OpFunctionEnd + +[vertex shader] +#version 450 + +layout(location = 0) in vec4 piglit_vertex; +layout(location = 0) uniform vec4 color[2]; + +void main() { + gl_Position = piglit_vertex; +} + + +[fragment shader spirv] +; Automatically generated from the GLSL by shader_test_spirv.py. DO NOT EDIT +; SPIR-V +; Version: 1.0 +; Generator: Khronos Glslang Reference Front End; 6 +; Bound: 13 +; Schema: 0 + OpCapability Shader + %1 = OpExtInstImport "GLSL.std.450" + OpMemoryModel Logical GLSL450 + OpEntryPoint Fragment %main "main" %outcolor + OpExecutionMode %main OriginLowerLeft + OpSource GLSL 450 + OpName %main "main" + OpName %outcolor "outcolor" + OpName %color "color" + OpDecorate %outcolor Location 0 + OpDecorate %color Location 0 + OpDecorate %color DescriptorSet 0 + OpDecorate %color Binding 0 + %void = OpTypeVoid + %3 = OpTypeFunction %void + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 +%_ptr_Output_v4float = OpTypePointer Output %v4float + %outcolor = OpVariable %_ptr_Output_v4float Output +%_ptr_UniformConstant_v4float = OpTypePointer UniformConstant %v4float + %color = OpVariable %_ptr_UniformConstant_v4float UniformConstant + %main = OpFunction %void None %3 + %5 = OpLabel + %12 = OpLoad %v4float %color + OpStore %outcolor %12 + OpReturn + OpFunctionEnd + +[fragment shader] +#version 450 + +layout(location = 0) uniform vec4 color; + +layout(location = 0) out vec4 outcolor; + +void main() { + outcolor = color; +} + +[test] +link error \ No newline at end of file diff --git a/tests/spec/arb_gl_spirv/linker/uniform/different-uniform-type.shader_test b/tests/spec/arb_gl_spirv/linker/uniform/different-uniform-type.shader_test new file mode 100644 index 000000000..d4ed5e93b --- /dev/null +++ b/tests/spec/arb_gl_spirv/linker/uniform/different-uniform-type.shader_test @@ -0,0 +1,129 @@ +# Test a very simple VS-PS where the same uniform (same location) is +# defined with different type on each stage. + +[require] +SPIRV YES +GL >= 3.3 +GLSL >= 4.50 + +[vertex shader spirv] +; Automatically generated from the GLSL by shader_test_spirv.py. DO NOT EDIT +; SPIR-V +; Version: 1.0 +; Generator: Khronos Glslang Reference Front End; 6 +; Bound: 27 +; Schema: 0 + OpCapability Shader + %1 = OpExtInstImport "GLSL.std.450" + OpMemoryModel Logical GLSL450 + OpEntryPoint Vertex %main "main" %_ %piglit_vertex %gl_VertexID %gl_InstanceID + OpSource GLSL 450 + OpName %main "main" + OpName %gl_PerVertex "gl_PerVertex" + OpMemberName %gl_PerVertex 0 "gl_Position" + OpMemberName %gl_PerVertex 1 "gl_PointSize" + OpMemberName %gl_PerVertex 2 "gl_ClipDistance" + OpMemberName %gl_PerVertex 3 "gl_CullDistance" + OpName %_ "" + OpName %piglit_vertex "piglit_vertex" + OpName %color "color" + OpName %gl_VertexID "gl_VertexID" + OpName %gl_InstanceID "gl_InstanceID" + OpMemberDecorate %gl_PerVertex 0 BuiltIn Position + OpMemberDecorate %gl_PerVertex 1 BuiltIn PointSize + OpMemberDecorate %gl_PerVertex 2 BuiltIn ClipDistance + OpMemberDecorate %gl_PerVertex 3 BuiltIn CullDistance + OpDecorate %gl_PerVertex Block + OpDecorate %piglit_vertex Location 0 + OpDecorate %color Location 0 + OpDecorate %color DescriptorSet 0 + OpDecorate %gl_VertexID BuiltIn VertexId + OpDecorate %gl_InstanceID BuiltIn InstanceId + %void = OpTypeVoid + %3 = OpTypeFunction %void + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 + %uint = OpTypeInt 32 0 + %uint_1 = OpConstant %uint 1 +%_arr_float_uint_1 = OpTypeArray %float %uint_1 +%gl_PerVertex = OpTypeStruct %v4float %float %_arr_float_uint_1 %_arr_float_uint_1 +%_ptr_Output_gl_PerVertex = OpTypePointer Output %gl_PerVertex + %_ = OpVariable %_ptr_Output_gl_PerVertex Output + %int = OpTypeInt 32 1 + %int_0 = OpConstant %int 0 +%_ptr_Input_v4float = OpTypePointer Input %v4float +%piglit_vertex = OpVariable %_ptr_Input_v4float Input +%_ptr_Output_v4float = OpTypePointer Output %v4float + %v3float = OpTypeVector %float 3 +%_ptr_UniformConstant_v3float = OpTypePointer UniformConstant %v3float + %color = OpVariable %_ptr_UniformConstant_v3float UniformConstant +%_ptr_Input_int = OpTypePointer Input %int +%gl_VertexID = OpVariable %_ptr_Input_int Input +%gl_InstanceID = OpVariable %_ptr_Input_int Input + %main = OpFunction %void None %3 + %5 = OpLabel + %18 = OpLoad %v4float %piglit_vertex + %20 = OpAccessChain %_ptr_Output_v4float %_ %int_0 + OpStore %20 %18 + OpReturn + OpFunctionEnd + +[vertex shader] +#version 450 + +layout(location = 0) in vec4 piglit_vertex; +layout(location = 0) uniform vec3 color; + +void main() { + gl_Position = piglit_vertex; +} + + +[fragment shader spirv] +; Automatically generated from the GLSL by shader_test_spirv.py. DO NOT EDIT +; SPIR-V +; Version: 1.0 +; Generator: Khronos Glslang Reference Front End; 6 +; Bound: 13 +; Schema: 0 + OpCapability Shader + %1 = OpExtInstImport "GLSL.std.450" + OpMemoryModel Logical GLSL450 + OpEntryPoint Fragment %main "main" %outcolor + OpExecutionMode %main OriginLowerLeft + OpSource GLSL 450 + OpName %main "main" + OpName %outcolor "outcolor" + OpName %color "color" + OpDecorate %outcolor Location 0 + OpDecorate %color Location 0 + OpDecorate %color DescriptorSet 0 + OpDecorate %color Binding 0 + %void = OpTypeVoid + %3 = OpTypeFunction %void + %float = OpTypeFloat 32 + %v4float = OpTypeVector %float 4 +%_ptr_Output_v4float = OpTypePointer Output %v4float + %outcolor = OpVariable %_ptr_Output_v4float Output +%_ptr_UniformConstant_v4float = OpTypePointer UniformConstant %v4float + %color = OpVariable %_ptr_UniformConstant_v4float UniformConstant + %main = OpFunction %void None %3 + %5 = OpLabel + %12 = OpLoad %v4float %color + OpStore %outcolor %12 + OpReturn + OpFunctionEnd + +[fragment shader] +#version 450 + +layout(location = 0) uniform vec4 color; + +layout(location = 0) out vec4 outcolor; + +void main() { + outcolor = color; +} + +[test] +link error \ No newline at end of file -- 2.14.1 _______________________________________________ Piglit mailing list Piglit@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/piglit