spirv backend: do not generate a load for ignored expressions
Fixes spirv-val failing on loads of dynamic arrays. Bug: chromium:1249602 Change-Id: Ic15af9f9ef2beb45bc732e4e45f023651544a1c7 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/64400 Reviewed-by: Ben Clayton <bclayton@google.com> Kokoro: Antonio Maiorano <amaiorano@google.com> Commit-Queue: Antonio Maiorano <amaiorano@google.com>
This commit is contained in:
parent
d1d99bc7de
commit
dad26395d8
|
@ -2322,7 +2322,8 @@ uint32_t Builder::GenerateIntrinsic(ast::CallExpression* call,
|
||||||
|
|
||||||
// Generates the SPIR-V ID for the expression for the indexed call parameter,
|
// Generates the SPIR-V ID for the expression for the indexed call parameter,
|
||||||
// and loads it if necessary. Returns 0 on error.
|
// and loads it if necessary. Returns 0 on error.
|
||||||
auto get_param_as_value_id = [&](size_t i) -> uint32_t {
|
auto get_param_as_value_id = [&](size_t i,
|
||||||
|
bool generate_load = true) -> uint32_t {
|
||||||
auto* arg = call->params()[i];
|
auto* arg = call->params()[i];
|
||||||
auto* param = intrinsic->Parameters()[i];
|
auto* param = intrinsic->Parameters()[i];
|
||||||
auto val_id = GenerateExpression(arg);
|
auto val_id = GenerateExpression(arg);
|
||||||
|
@ -2330,7 +2331,7 @@ uint32_t Builder::GenerateIntrinsic(ast::CallExpression* call,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!param->Type()->Is<sem::Pointer>()) {
|
if (generate_load && !param->Type()->Is<sem::Pointer>()) {
|
||||||
val_id = GenerateLoadIfNeeded(TypeOf(arg), val_id);
|
val_id = GenerateLoadIfNeeded(TypeOf(arg), val_id);
|
||||||
}
|
}
|
||||||
return val_id;
|
return val_id;
|
||||||
|
@ -2427,7 +2428,7 @@ uint32_t Builder::GenerateIntrinsic(ast::CallExpression* call,
|
||||||
// Evaluate the single argument, return the non-zero result_id which isn't
|
// Evaluate the single argument, return the non-zero result_id which isn't
|
||||||
// associated with any op (ignore returns void, so this cannot be used in
|
// associated with any op (ignore returns void, so this cannot be used in
|
||||||
// an expression).
|
// an expression).
|
||||||
if (!get_param_as_value_id(0)) {
|
if (!get_param_as_value_id(0, false)) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return result_id;
|
return result_id;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 114
|
; Bound: 110
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -128,7 +128,7 @@
|
||||||
%float_0 = OpConstant %float 0
|
%float_0 = OpConstant %float 0
|
||||||
%92 = OpConstantComposite %v4float %float_1 %float_0 %float_0 %float_1
|
%92 = OpConstantComposite %v4float %float_1 %float_0 %float_0 %float_1
|
||||||
%void = OpTypeVoid
|
%void = OpTypeVoid
|
||||||
%103 = OpTypeFunction %void
|
%99 = OpTypeFunction %void
|
||||||
%getColor = OpFunction %v4float None %30
|
%getColor = OpFunction %v4float None %30
|
||||||
%fragment = OpFunctionParameter %FragmentInput
|
%fragment = OpFunctionParameter %FragmentInput
|
||||||
%34 = OpLabel
|
%34 = OpLabel
|
||||||
|
@ -195,23 +195,19 @@
|
||||||
%output = OpVariable %_ptr_Function_FragmentOutput Function %89
|
%output = OpVariable %_ptr_Function_FragmentOutput Function %89
|
||||||
%90 = OpAccessChain %_ptr_Function_v4float %output %uint_0
|
%90 = OpAccessChain %_ptr_Function_v4float %output %uint_0
|
||||||
OpStore %90 %92
|
OpStore %90 %92
|
||||||
%95 = OpLoad %Uniforms %uniforms
|
%98 = OpLoad %FragmentOutput %output
|
||||||
%97 = OpLoad %26 %mySampler
|
OpReturnValue %98
|
||||||
%99 = OpLoad %29 %myTexture
|
|
||||||
%101 = OpLoad %PointLights %pointLights
|
|
||||||
%102 = OpLoad %FragmentOutput %output
|
|
||||||
OpReturnValue %102
|
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%main = OpFunction %void None %103
|
%main = OpFunction %void None %99
|
||||||
%105 = OpLabel
|
%101 = OpLabel
|
||||||
%107 = OpLoad %v4float %position_1
|
%103 = OpLoad %v4float %position_1
|
||||||
%108 = OpLoad %v4float %view_position_1
|
%104 = OpLoad %v4float %view_position_1
|
||||||
%109 = OpLoad %v4float %normal_1
|
%105 = OpLoad %v4float %normal_1
|
||||||
%110 = OpLoad %v2float %uv_1
|
%106 = OpLoad %v2float %uv_1
|
||||||
%111 = OpLoad %v4float %color_1
|
%107 = OpLoad %v4float %color_1
|
||||||
%112 = OpCompositeConstruct %FragmentInput %107 %108 %109 %110 %111
|
%108 = OpCompositeConstruct %FragmentInput %103 %104 %105 %106 %107
|
||||||
%106 = OpFunctionCall %FragmentOutput %main_inner %112
|
%102 = OpFunctionCall %FragmentOutput %main_inner %108
|
||||||
%113 = OpCompositeExtract %v4float %106 0
|
%109 = OpCompositeExtract %v4float %102 0
|
||||||
OpStore %color_2 %113
|
OpStore %color_2 %109
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 160
|
; Bound: 112
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -235,53 +235,5 @@
|
||||||
%60 = OpTypeFunction %void
|
%60 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %60
|
%main = OpFunction %void None %60
|
||||||
%63 = OpLabel
|
%63 = OpLabel
|
||||||
%65 = OpLoad %S %b0
|
|
||||||
%67 = OpLoad %S %b1
|
|
||||||
%69 = OpLoad %S %b2
|
|
||||||
%71 = OpLoad %S %b3
|
|
||||||
%73 = OpLoad %S %b4
|
|
||||||
%75 = OpLoad %S %b5
|
|
||||||
%77 = OpLoad %S %b6
|
|
||||||
%79 = OpLoad %S %b7
|
|
||||||
%81 = OpLoad %S %b8
|
|
||||||
%83 = OpLoad %S %b9
|
|
||||||
%85 = OpLoad %S %b10
|
|
||||||
%87 = OpLoad %S %b11
|
|
||||||
%89 = OpLoad %S %b12
|
|
||||||
%91 = OpLoad %S %b13
|
|
||||||
%93 = OpLoad %S %b14
|
|
||||||
%95 = OpLoad %S %b15
|
|
||||||
%97 = OpLoad %23 %t0
|
|
||||||
%99 = OpLoad %23 %t1
|
|
||||||
%101 = OpLoad %23 %t2
|
|
||||||
%103 = OpLoad %23 %t3
|
|
||||||
%105 = OpLoad %23 %t4
|
|
||||||
%107 = OpLoad %23 %t5
|
|
||||||
%109 = OpLoad %23 %t6
|
|
||||||
%111 = OpLoad %23 %t7
|
|
||||||
%113 = OpLoad %33 %t8
|
|
||||||
%115 = OpLoad %33 %t9
|
|
||||||
%117 = OpLoad %33 %t10
|
|
||||||
%119 = OpLoad %33 %t11
|
|
||||||
%121 = OpLoad %33 %t12
|
|
||||||
%123 = OpLoad %33 %t13
|
|
||||||
%125 = OpLoad %33 %t14
|
|
||||||
%127 = OpLoad %33 %t15
|
|
||||||
%129 = OpLoad %43 %s0
|
|
||||||
%131 = OpLoad %43 %s1
|
|
||||||
%133 = OpLoad %43 %s2
|
|
||||||
%135 = OpLoad %43 %s3
|
|
||||||
%137 = OpLoad %43 %s4
|
|
||||||
%139 = OpLoad %43 %s5
|
|
||||||
%141 = OpLoad %43 %s6
|
|
||||||
%143 = OpLoad %43 %s7
|
|
||||||
%145 = OpLoad %43 %s8
|
|
||||||
%147 = OpLoad %43 %s9
|
|
||||||
%149 = OpLoad %43 %s10
|
|
||||||
%151 = OpLoad %43 %s11
|
|
||||||
%153 = OpLoad %43 %s12
|
|
||||||
%155 = OpLoad %43 %s13
|
|
||||||
%157 = OpLoad %43 %s14
|
|
||||||
%159 = OpLoad %43 %s15
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 32
|
; Bound: 31
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -35,32 +35,31 @@
|
||||||
%arg_0 = OpVariable %_ptr_UniformConstant_11 UniformConstant
|
%arg_0 = OpVariable %_ptr_UniformConstant_11 UniformConstant
|
||||||
%void = OpTypeVoid
|
%void = OpTypeVoid
|
||||||
%12 = OpTypeFunction %void
|
%12 = OpTypeFunction %void
|
||||||
%18 = OpTypeFunction %v4float
|
%17 = OpTypeFunction %v4float
|
||||||
%float_1 = OpConstant %float 1
|
%float_1 = OpConstant %float 1
|
||||||
%ignore_2a6ac2 = OpFunction %void None %12
|
%ignore_2a6ac2 = OpFunction %void None %12
|
||||||
%15 = OpLabel
|
%15 = OpLabel
|
||||||
%17 = OpLoad %11 %arg_0
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main_inner = OpFunction %v4float None %18
|
%vertex_main_inner = OpFunction %v4float None %17
|
||||||
%20 = OpLabel
|
%19 = OpLabel
|
||||||
%21 = OpFunctionCall %void %ignore_2a6ac2
|
%20 = OpFunctionCall %void %ignore_2a6ac2
|
||||||
OpReturnValue %5
|
OpReturnValue %5
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main = OpFunction %void None %12
|
%vertex_main = OpFunction %void None %12
|
||||||
%23 = OpLabel
|
%22 = OpLabel
|
||||||
%24 = OpFunctionCall %v4float %vertex_main_inner
|
%23 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
OpStore %value %24
|
OpStore %value %23
|
||||||
OpStore %vertex_point_size %float_1
|
OpStore %vertex_point_size %float_1
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%fragment_main = OpFunction %void None %12
|
%fragment_main = OpFunction %void None %12
|
||||||
%27 = OpLabel
|
%26 = OpLabel
|
||||||
%28 = OpFunctionCall %void %ignore_2a6ac2
|
%27 = OpFunctionCall %void %ignore_2a6ac2
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%compute_main = OpFunction %void None %12
|
%compute_main = OpFunction %void None %12
|
||||||
%30 = OpLabel
|
%29 = OpLabel
|
||||||
%31 = OpFunctionCall %void %ignore_2a6ac2
|
%30 = OpFunctionCall %void %ignore_2a6ac2
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 32
|
; Bound: 31
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -35,32 +35,31 @@
|
||||||
%arg_0 = OpVariable %_ptr_UniformConstant_11 UniformConstant
|
%arg_0 = OpVariable %_ptr_UniformConstant_11 UniformConstant
|
||||||
%void = OpTypeVoid
|
%void = OpTypeVoid
|
||||||
%12 = OpTypeFunction %void
|
%12 = OpTypeFunction %void
|
||||||
%18 = OpTypeFunction %v4float
|
%17 = OpTypeFunction %v4float
|
||||||
%float_1 = OpConstant %float 1
|
%float_1 = OpConstant %float 1
|
||||||
%ignore_5016e5 = OpFunction %void None %12
|
%ignore_5016e5 = OpFunction %void None %12
|
||||||
%15 = OpLabel
|
%15 = OpLabel
|
||||||
%17 = OpLoad %11 %arg_0
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main_inner = OpFunction %v4float None %18
|
%vertex_main_inner = OpFunction %v4float None %17
|
||||||
%20 = OpLabel
|
%19 = OpLabel
|
||||||
%21 = OpFunctionCall %void %ignore_5016e5
|
%20 = OpFunctionCall %void %ignore_5016e5
|
||||||
OpReturnValue %5
|
OpReturnValue %5
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main = OpFunction %void None %12
|
%vertex_main = OpFunction %void None %12
|
||||||
%23 = OpLabel
|
%22 = OpLabel
|
||||||
%24 = OpFunctionCall %v4float %vertex_main_inner
|
%23 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
OpStore %value %24
|
OpStore %value %23
|
||||||
OpStore %vertex_point_size %float_1
|
OpStore %vertex_point_size %float_1
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%fragment_main = OpFunction %void None %12
|
%fragment_main = OpFunction %void None %12
|
||||||
%27 = OpLabel
|
%26 = OpLabel
|
||||||
%28 = OpFunctionCall %void %ignore_5016e5
|
%27 = OpFunctionCall %void %ignore_5016e5
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%compute_main = OpFunction %void None %12
|
%compute_main = OpFunction %void None %12
|
||||||
%30 = OpLabel
|
%29 = OpLabel
|
||||||
%31 = OpFunctionCall %void %ignore_5016e5
|
%30 = OpFunctionCall %void %ignore_5016e5
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 32
|
; Bound: 31
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -35,32 +35,31 @@
|
||||||
%arg_0 = OpVariable %_ptr_UniformConstant_11 UniformConstant
|
%arg_0 = OpVariable %_ptr_UniformConstant_11 UniformConstant
|
||||||
%void = OpTypeVoid
|
%void = OpTypeVoid
|
||||||
%12 = OpTypeFunction %void
|
%12 = OpTypeFunction %void
|
||||||
%18 = OpTypeFunction %v4float
|
%17 = OpTypeFunction %v4float
|
||||||
%float_1 = OpConstant %float 1
|
%float_1 = OpConstant %float 1
|
||||||
%ignore_509355 = OpFunction %void None %12
|
%ignore_509355 = OpFunction %void None %12
|
||||||
%15 = OpLabel
|
%15 = OpLabel
|
||||||
%17 = OpLoad %11 %arg_0
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main_inner = OpFunction %v4float None %18
|
%vertex_main_inner = OpFunction %v4float None %17
|
||||||
%20 = OpLabel
|
%19 = OpLabel
|
||||||
%21 = OpFunctionCall %void %ignore_509355
|
%20 = OpFunctionCall %void %ignore_509355
|
||||||
OpReturnValue %5
|
OpReturnValue %5
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main = OpFunction %void None %12
|
%vertex_main = OpFunction %void None %12
|
||||||
%23 = OpLabel
|
%22 = OpLabel
|
||||||
%24 = OpFunctionCall %v4float %vertex_main_inner
|
%23 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
OpStore %value %24
|
OpStore %value %23
|
||||||
OpStore %vertex_point_size %float_1
|
OpStore %vertex_point_size %float_1
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%fragment_main = OpFunction %void None %12
|
%fragment_main = OpFunction %void None %12
|
||||||
%27 = OpLabel
|
%26 = OpLabel
|
||||||
%28 = OpFunctionCall %void %ignore_509355
|
%27 = OpFunctionCall %void %ignore_509355
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%compute_main = OpFunction %void None %12
|
%compute_main = OpFunction %void None %12
|
||||||
%30 = OpLabel
|
%29 = OpLabel
|
||||||
%31 = OpFunctionCall %void %ignore_509355
|
%30 = OpFunctionCall %void %ignore_509355
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 32
|
; Bound: 31
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -35,32 +35,31 @@
|
||||||
%arg_0 = OpVariable %_ptr_UniformConstant_11 UniformConstant
|
%arg_0 = OpVariable %_ptr_UniformConstant_11 UniformConstant
|
||||||
%void = OpTypeVoid
|
%void = OpTypeVoid
|
||||||
%12 = OpTypeFunction %void
|
%12 = OpTypeFunction %void
|
||||||
%18 = OpTypeFunction %v4float
|
%17 = OpTypeFunction %v4float
|
||||||
%float_1 = OpConstant %float 1
|
%float_1 = OpConstant %float 1
|
||||||
%ignore_5c9edf = OpFunction %void None %12
|
%ignore_5c9edf = OpFunction %void None %12
|
||||||
%15 = OpLabel
|
%15 = OpLabel
|
||||||
%17 = OpLoad %11 %arg_0
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main_inner = OpFunction %v4float None %18
|
%vertex_main_inner = OpFunction %v4float None %17
|
||||||
%20 = OpLabel
|
%19 = OpLabel
|
||||||
%21 = OpFunctionCall %void %ignore_5c9edf
|
%20 = OpFunctionCall %void %ignore_5c9edf
|
||||||
OpReturnValue %5
|
OpReturnValue %5
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main = OpFunction %void None %12
|
%vertex_main = OpFunction %void None %12
|
||||||
%23 = OpLabel
|
%22 = OpLabel
|
||||||
%24 = OpFunctionCall %v4float %vertex_main_inner
|
%23 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
OpStore %value %24
|
OpStore %value %23
|
||||||
OpStore %vertex_point_size %float_1
|
OpStore %vertex_point_size %float_1
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%fragment_main = OpFunction %void None %12
|
%fragment_main = OpFunction %void None %12
|
||||||
%27 = OpLabel
|
%26 = OpLabel
|
||||||
%28 = OpFunctionCall %void %ignore_5c9edf
|
%27 = OpFunctionCall %void %ignore_5c9edf
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%compute_main = OpFunction %void None %12
|
%compute_main = OpFunction %void None %12
|
||||||
%30 = OpLabel
|
%29 = OpLabel
|
||||||
%31 = OpFunctionCall %void %ignore_5c9edf
|
%30 = OpFunctionCall %void %ignore_5c9edf
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 32
|
; Bound: 31
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpCapability SampledCubeArray
|
OpCapability SampledCubeArray
|
||||||
|
@ -36,32 +36,31 @@
|
||||||
%arg_0 = OpVariable %_ptr_UniformConstant_11 UniformConstant
|
%arg_0 = OpVariable %_ptr_UniformConstant_11 UniformConstant
|
||||||
%void = OpTypeVoid
|
%void = OpTypeVoid
|
||||||
%12 = OpTypeFunction %void
|
%12 = OpTypeFunction %void
|
||||||
%18 = OpTypeFunction %v4float
|
%17 = OpTypeFunction %v4float
|
||||||
%float_1 = OpConstant %float 1
|
%float_1 = OpConstant %float 1
|
||||||
%ignore_ad88be = OpFunction %void None %12
|
%ignore_ad88be = OpFunction %void None %12
|
||||||
%15 = OpLabel
|
%15 = OpLabel
|
||||||
%17 = OpLoad %11 %arg_0
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main_inner = OpFunction %v4float None %18
|
%vertex_main_inner = OpFunction %v4float None %17
|
||||||
%20 = OpLabel
|
%19 = OpLabel
|
||||||
%21 = OpFunctionCall %void %ignore_ad88be
|
%20 = OpFunctionCall %void %ignore_ad88be
|
||||||
OpReturnValue %5
|
OpReturnValue %5
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main = OpFunction %void None %12
|
%vertex_main = OpFunction %void None %12
|
||||||
%23 = OpLabel
|
%22 = OpLabel
|
||||||
%24 = OpFunctionCall %v4float %vertex_main_inner
|
%23 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
OpStore %value %24
|
OpStore %value %23
|
||||||
OpStore %vertex_point_size %float_1
|
OpStore %vertex_point_size %float_1
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%fragment_main = OpFunction %void None %12
|
%fragment_main = OpFunction %void None %12
|
||||||
%27 = OpLabel
|
%26 = OpLabel
|
||||||
%28 = OpFunctionCall %void %ignore_ad88be
|
%27 = OpFunctionCall %void %ignore_ad88be
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%compute_main = OpFunction %void None %12
|
%compute_main = OpFunction %void None %12
|
||||||
%30 = OpLabel
|
%29 = OpLabel
|
||||||
%31 = OpFunctionCall %void %ignore_ad88be
|
%30 = OpFunctionCall %void %ignore_ad88be
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 32
|
; Bound: 31
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -35,32 +35,31 @@
|
||||||
%arg_0 = OpVariable %_ptr_UniformConstant_11 UniformConstant
|
%arg_0 = OpVariable %_ptr_UniformConstant_11 UniformConstant
|
||||||
%void = OpTypeVoid
|
%void = OpTypeVoid
|
||||||
%12 = OpTypeFunction %void
|
%12 = OpTypeFunction %void
|
||||||
%18 = OpTypeFunction %v4float
|
%17 = OpTypeFunction %v4float
|
||||||
%float_1 = OpConstant %float 1
|
%float_1 = OpConstant %float 1
|
||||||
%ignore_b469af = OpFunction %void None %12
|
%ignore_b469af = OpFunction %void None %12
|
||||||
%15 = OpLabel
|
%15 = OpLabel
|
||||||
%17 = OpLoad %11 %arg_0
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main_inner = OpFunction %v4float None %18
|
%vertex_main_inner = OpFunction %v4float None %17
|
||||||
%20 = OpLabel
|
%19 = OpLabel
|
||||||
%21 = OpFunctionCall %void %ignore_b469af
|
%20 = OpFunctionCall %void %ignore_b469af
|
||||||
OpReturnValue %5
|
OpReturnValue %5
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main = OpFunction %void None %12
|
%vertex_main = OpFunction %void None %12
|
||||||
%23 = OpLabel
|
%22 = OpLabel
|
||||||
%24 = OpFunctionCall %v4float %vertex_main_inner
|
%23 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
OpStore %value %24
|
OpStore %value %23
|
||||||
OpStore %vertex_point_size %float_1
|
OpStore %vertex_point_size %float_1
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%fragment_main = OpFunction %void None %12
|
%fragment_main = OpFunction %void None %12
|
||||||
%27 = OpLabel
|
%26 = OpLabel
|
||||||
%28 = OpFunctionCall %void %ignore_b469af
|
%27 = OpFunctionCall %void %ignore_b469af
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%compute_main = OpFunction %void None %12
|
%compute_main = OpFunction %void None %12
|
||||||
%30 = OpLabel
|
%29 = OpLabel
|
||||||
%31 = OpFunctionCall %void %ignore_b469af
|
%30 = OpFunctionCall %void %ignore_b469af
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 32
|
; Bound: 31
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -35,32 +35,31 @@
|
||||||
%arg_0 = OpVariable %_ptr_UniformConstant_11 UniformConstant
|
%arg_0 = OpVariable %_ptr_UniformConstant_11 UniformConstant
|
||||||
%void = OpTypeVoid
|
%void = OpTypeVoid
|
||||||
%12 = OpTypeFunction %void
|
%12 = OpTypeFunction %void
|
||||||
%18 = OpTypeFunction %v4float
|
%17 = OpTypeFunction %v4float
|
||||||
%float_1 = OpConstant %float 1
|
%float_1 = OpConstant %float 1
|
||||||
%ignore_c8a0ee = OpFunction %void None %12
|
%ignore_c8a0ee = OpFunction %void None %12
|
||||||
%15 = OpLabel
|
%15 = OpLabel
|
||||||
%17 = OpLoad %11 %arg_0
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main_inner = OpFunction %v4float None %18
|
%vertex_main_inner = OpFunction %v4float None %17
|
||||||
%20 = OpLabel
|
%19 = OpLabel
|
||||||
%21 = OpFunctionCall %void %ignore_c8a0ee
|
%20 = OpFunctionCall %void %ignore_c8a0ee
|
||||||
OpReturnValue %5
|
OpReturnValue %5
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main = OpFunction %void None %12
|
%vertex_main = OpFunction %void None %12
|
||||||
%23 = OpLabel
|
%22 = OpLabel
|
||||||
%24 = OpFunctionCall %v4float %vertex_main_inner
|
%23 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
OpStore %value %24
|
OpStore %value %23
|
||||||
OpStore %vertex_point_size %float_1
|
OpStore %vertex_point_size %float_1
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%fragment_main = OpFunction %void None %12
|
%fragment_main = OpFunction %void None %12
|
||||||
%27 = OpLabel
|
%26 = OpLabel
|
||||||
%28 = OpFunctionCall %void %ignore_c8a0ee
|
%27 = OpFunctionCall %void %ignore_c8a0ee
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%compute_main = OpFunction %void None %12
|
%compute_main = OpFunction %void None %12
|
||||||
%30 = OpLabel
|
%29 = OpLabel
|
||||||
%31 = OpFunctionCall %void %ignore_c8a0ee
|
%30 = OpFunctionCall %void %ignore_c8a0ee
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 32
|
; Bound: 31
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -35,32 +35,31 @@
|
||||||
%arg_0 = OpVariable %_ptr_UniformConstant_11 UniformConstant
|
%arg_0 = OpVariable %_ptr_UniformConstant_11 UniformConstant
|
||||||
%void = OpTypeVoid
|
%void = OpTypeVoid
|
||||||
%12 = OpTypeFunction %void
|
%12 = OpTypeFunction %void
|
||||||
%18 = OpTypeFunction %v4float
|
%17 = OpTypeFunction %v4float
|
||||||
%float_1 = OpConstant %float 1
|
%float_1 = OpConstant %float 1
|
||||||
%ignore_e0187b = OpFunction %void None %12
|
%ignore_e0187b = OpFunction %void None %12
|
||||||
%15 = OpLabel
|
%15 = OpLabel
|
||||||
%17 = OpLoad %11 %arg_0
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main_inner = OpFunction %v4float None %18
|
%vertex_main_inner = OpFunction %v4float None %17
|
||||||
%20 = OpLabel
|
%19 = OpLabel
|
||||||
%21 = OpFunctionCall %void %ignore_e0187b
|
%20 = OpFunctionCall %void %ignore_e0187b
|
||||||
OpReturnValue %5
|
OpReturnValue %5
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%vertex_main = OpFunction %void None %12
|
%vertex_main = OpFunction %void None %12
|
||||||
%23 = OpLabel
|
%22 = OpLabel
|
||||||
%24 = OpFunctionCall %v4float %vertex_main_inner
|
%23 = OpFunctionCall %v4float %vertex_main_inner
|
||||||
OpStore %value %24
|
OpStore %value %23
|
||||||
OpStore %vertex_point_size %float_1
|
OpStore %vertex_point_size %float_1
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%fragment_main = OpFunction %void None %12
|
%fragment_main = OpFunction %void None %12
|
||||||
%27 = OpLabel
|
%26 = OpLabel
|
||||||
%28 = OpFunctionCall %void %ignore_e0187b
|
%27 = OpFunctionCall %void %ignore_e0187b
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%compute_main = OpFunction %void None %12
|
%compute_main = OpFunction %void None %12
|
||||||
%30 = OpLabel
|
%29 = OpLabel
|
||||||
%31 = OpFunctionCall %void %ignore_e0187b
|
%30 = OpFunctionCall %void %ignore_e0187b
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 16
|
; Bound: 15
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -29,6 +29,5 @@
|
||||||
%main = OpFunction %void None %6
|
%main = OpFunction %void None %6
|
||||||
%9 = OpLabel
|
%9 = OpLabel
|
||||||
%14 = OpAccessChain %_ptr_StorageBuffer__runtimearr_int %s %uint_0
|
%14 = OpAccessChain %_ptr_StorageBuffer__runtimearr_int %s %uint_0
|
||||||
%15 = OpLoad %_runtimearr_int %14
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 17
|
; Bound: 15
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -26,8 +26,6 @@
|
||||||
%_ptr_StorageBuffer_int = OpTypePointer StorageBuffer %int
|
%_ptr_StorageBuffer_int = OpTypePointer StorageBuffer %int
|
||||||
%main = OpFunction %void None %5
|
%main = OpFunction %void None %5
|
||||||
%8 = OpLabel
|
%8 = OpLabel
|
||||||
%10 = OpLoad %S %s
|
%14 = OpAccessChain %_ptr_StorageBuffer_int %s %uint_0
|
||||||
%15 = OpAccessChain %_ptr_StorageBuffer_int %s %uint_0
|
|
||||||
%16 = OpLoad %int %15
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 17
|
; Bound: 15
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -27,8 +27,6 @@
|
||||||
%_ptr_Uniform_int = OpTypePointer Uniform %int
|
%_ptr_Uniform_int = OpTypePointer Uniform %int
|
||||||
%main = OpFunction %void None %5
|
%main = OpFunction %void None %5
|
||||||
%8 = OpLabel
|
%8 = OpLabel
|
||||||
%10 = OpLoad %S %u
|
%14 = OpAccessChain %_ptr_Uniform_int %u %uint_0
|
||||||
%15 = OpAccessChain %_ptr_Uniform_int %u %uint_0
|
|
||||||
%16 = OpLoad %int %15
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 14
|
; Bound: 12
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -23,7 +23,5 @@
|
||||||
%6 = OpTypeFunction %void
|
%6 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %6
|
%main = OpFunction %void None %6
|
||||||
%9 = OpLabel
|
%9 = OpLabel
|
||||||
%11 = OpLoad %3 %s
|
|
||||||
%13 = OpLoad %3 %sc
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 11
|
; Bound: 10
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -19,6 +19,5 @@
|
||||||
%5 = OpTypeFunction %void
|
%5 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %5
|
%main = OpFunction %void None %5
|
||||||
%8 = OpLabel
|
%8 = OpLabel
|
||||||
%10 = OpLoad %3 %t_f
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 11
|
; Bound: 10
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -19,6 +19,5 @@
|
||||||
%5 = OpTypeFunction %void
|
%5 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %5
|
%main = OpFunction %void None %5
|
||||||
%8 = OpLabel
|
%8 = OpLabel
|
||||||
%10 = OpLoad %3 %t_f
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 11
|
; Bound: 10
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -19,6 +19,5 @@
|
||||||
%5 = OpTypeFunction %void
|
%5 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %5
|
%main = OpFunction %void None %5
|
||||||
%8 = OpLabel
|
%8 = OpLabel
|
||||||
%10 = OpLoad %3 %t_f
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 11
|
; Bound: 10
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpCapability SampledCubeArray
|
OpCapability SampledCubeArray
|
||||||
|
@ -20,6 +20,5 @@
|
||||||
%5 = OpTypeFunction %void
|
%5 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %5
|
%main = OpFunction %void None %5
|
||||||
%8 = OpLabel
|
%8 = OpLabel
|
||||||
%10 = OpLoad %3 %t_f
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 23
|
; Bound: 20
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -33,8 +33,5 @@
|
||||||
%13 = OpTypeFunction %void
|
%13 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %13
|
%main = OpFunction %void None %13
|
||||||
%16 = OpLabel
|
%16 = OpLabel
|
||||||
%18 = OpLoad %3 %t_f
|
|
||||||
%20 = OpLoad %7 %t_i
|
|
||||||
%22 = OpLoad %11 %t_u
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 23
|
; Bound: 20
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpCapability Sampled1D
|
OpCapability Sampled1D
|
||||||
|
@ -34,8 +34,5 @@
|
||||||
%13 = OpTypeFunction %void
|
%13 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %13
|
%main = OpFunction %void None %13
|
||||||
%16 = OpLabel
|
%16 = OpLabel
|
||||||
%18 = OpLoad %3 %t_f
|
|
||||||
%20 = OpLoad %7 %t_i
|
|
||||||
%22 = OpLoad %11 %t_u
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 23
|
; Bound: 20
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -33,8 +33,5 @@
|
||||||
%13 = OpTypeFunction %void
|
%13 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %13
|
%main = OpFunction %void None %13
|
||||||
%16 = OpLabel
|
%16 = OpLabel
|
||||||
%18 = OpLoad %3 %t_f
|
|
||||||
%20 = OpLoad %7 %t_i
|
|
||||||
%22 = OpLoad %11 %t_u
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 23
|
; Bound: 20
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -33,8 +33,5 @@
|
||||||
%13 = OpTypeFunction %void
|
%13 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %13
|
%main = OpFunction %void None %13
|
||||||
%16 = OpLabel
|
%16 = OpLabel
|
||||||
%18 = OpLoad %3 %t_f
|
|
||||||
%20 = OpLoad %7 %t_i
|
|
||||||
%22 = OpLoad %11 %t_u
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 23
|
; Bound: 20
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -33,8 +33,5 @@
|
||||||
%13 = OpTypeFunction %void
|
%13 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %13
|
%main = OpFunction %void None %13
|
||||||
%16 = OpLabel
|
%16 = OpLabel
|
||||||
%18 = OpLoad %3 %t_f
|
|
||||||
%20 = OpLoad %7 %t_i
|
|
||||||
%22 = OpLoad %11 %t_u
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 23
|
; Bound: 20
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -33,8 +33,5 @@
|
||||||
%13 = OpTypeFunction %void
|
%13 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %13
|
%main = OpFunction %void None %13
|
||||||
%16 = OpLabel
|
%16 = OpLabel
|
||||||
%18 = OpLoad %3 %t_f
|
|
||||||
%20 = OpLoad %7 %t_i
|
|
||||||
%22 = OpLoad %11 %t_u
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 23
|
; Bound: 20
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpCapability SampledCubeArray
|
OpCapability SampledCubeArray
|
||||||
|
@ -34,8 +34,5 @@
|
||||||
%13 = OpTypeFunction %void
|
%13 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %13
|
%main = OpFunction %void None %13
|
||||||
%16 = OpLabel
|
%16 = OpLabel
|
||||||
%18 = OpLoad %3 %t_f
|
|
||||||
%20 = OpLoad %7 %t_i
|
|
||||||
%22 = OpLoad %11 %t_u
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 152
|
; Bound: 120
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpCapability Image1D
|
OpCapability Image1D
|
||||||
|
@ -225,37 +225,5 @@
|
||||||
%84 = OpTypeFunction %void
|
%84 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %84
|
%main = OpFunction %void None %84
|
||||||
%87 = OpLabel
|
%87 = OpLabel
|
||||||
%89 = OpLoad %3 %t_rgba8unorm_r
|
|
||||||
%91 = OpLoad %7 %t_rgba8snorm_r
|
|
||||||
%93 = OpLoad %10 %t_rgba8uint_r
|
|
||||||
%95 = OpLoad %14 %t_rgba8sint_r
|
|
||||||
%97 = OpLoad %18 %t_rgba16uint_r
|
|
||||||
%99 = OpLoad %21 %t_rgba16sint_r
|
|
||||||
%101 = OpLoad %24 %t_rgba16float_r
|
|
||||||
%103 = OpLoad %27 %t_r32uint_r
|
|
||||||
%105 = OpLoad %30 %t_r32sint_r
|
|
||||||
%107 = OpLoad %33 %t_r32float_r
|
|
||||||
%109 = OpLoad %36 %t_rg32uint_r
|
|
||||||
%111 = OpLoad %39 %t_rg32sint_r
|
|
||||||
%113 = OpLoad %42 %t_rg32float_r
|
|
||||||
%115 = OpLoad %45 %t_rgba32uint_r
|
|
||||||
%117 = OpLoad %48 %t_rgba32sint_r
|
|
||||||
%119 = OpLoad %51 %t_rgba32float_r
|
|
||||||
%121 = OpLoad %3 %t_rgba8unorm_w
|
|
||||||
%123 = OpLoad %7 %t_rgba8snorm_w
|
|
||||||
%125 = OpLoad %10 %t_rgba8uint_w
|
|
||||||
%127 = OpLoad %14 %t_rgba8sint_w
|
|
||||||
%129 = OpLoad %18 %t_rgba16uint_w
|
|
||||||
%131 = OpLoad %21 %t_rgba16sint_w
|
|
||||||
%133 = OpLoad %24 %t_rgba16float_w
|
|
||||||
%135 = OpLoad %27 %t_r32uint_w
|
|
||||||
%137 = OpLoad %30 %t_r32sint_w
|
|
||||||
%139 = OpLoad %33 %t_r32float_w
|
|
||||||
%141 = OpLoad %36 %t_rg32uint_w
|
|
||||||
%143 = OpLoad %39 %t_rg32sint_w
|
|
||||||
%145 = OpLoad %42 %t_rg32float_w
|
|
||||||
%147 = OpLoad %45 %t_rgba32uint_w
|
|
||||||
%149 = OpLoad %48 %t_rgba32sint_w
|
|
||||||
%151 = OpLoad %51 %t_rgba32float_w
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 152
|
; Bound: 120
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpCapability StorageImageExtendedFormats
|
OpCapability StorageImageExtendedFormats
|
||||||
|
@ -224,37 +224,5 @@
|
||||||
%84 = OpTypeFunction %void
|
%84 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %84
|
%main = OpFunction %void None %84
|
||||||
%87 = OpLabel
|
%87 = OpLabel
|
||||||
%89 = OpLoad %3 %t_rgba8unorm_r
|
|
||||||
%91 = OpLoad %7 %t_rgba8snorm_r
|
|
||||||
%93 = OpLoad %10 %t_rgba8uint_r
|
|
||||||
%95 = OpLoad %14 %t_rgba8sint_r
|
|
||||||
%97 = OpLoad %18 %t_rgba16uint_r
|
|
||||||
%99 = OpLoad %21 %t_rgba16sint_r
|
|
||||||
%101 = OpLoad %24 %t_rgba16float_r
|
|
||||||
%103 = OpLoad %27 %t_r32uint_r
|
|
||||||
%105 = OpLoad %30 %t_r32sint_r
|
|
||||||
%107 = OpLoad %33 %t_r32float_r
|
|
||||||
%109 = OpLoad %36 %t_rg32uint_r
|
|
||||||
%111 = OpLoad %39 %t_rg32sint_r
|
|
||||||
%113 = OpLoad %42 %t_rg32float_r
|
|
||||||
%115 = OpLoad %45 %t_rgba32uint_r
|
|
||||||
%117 = OpLoad %48 %t_rgba32sint_r
|
|
||||||
%119 = OpLoad %51 %t_rgba32float_r
|
|
||||||
%121 = OpLoad %3 %t_rgba8unorm_w
|
|
||||||
%123 = OpLoad %7 %t_rgba8snorm_w
|
|
||||||
%125 = OpLoad %10 %t_rgba8uint_w
|
|
||||||
%127 = OpLoad %14 %t_rgba8sint_w
|
|
||||||
%129 = OpLoad %18 %t_rgba16uint_w
|
|
||||||
%131 = OpLoad %21 %t_rgba16sint_w
|
|
||||||
%133 = OpLoad %24 %t_rgba16float_w
|
|
||||||
%135 = OpLoad %27 %t_r32uint_w
|
|
||||||
%137 = OpLoad %30 %t_r32sint_w
|
|
||||||
%139 = OpLoad %33 %t_r32float_w
|
|
||||||
%141 = OpLoad %36 %t_rg32uint_w
|
|
||||||
%143 = OpLoad %39 %t_rg32sint_w
|
|
||||||
%145 = OpLoad %42 %t_rg32float_w
|
|
||||||
%147 = OpLoad %45 %t_rgba32uint_w
|
|
||||||
%149 = OpLoad %48 %t_rgba32sint_w
|
|
||||||
%151 = OpLoad %51 %t_rgba32float_w
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 152
|
; Bound: 120
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpCapability StorageImageExtendedFormats
|
OpCapability StorageImageExtendedFormats
|
||||||
|
@ -224,37 +224,5 @@
|
||||||
%84 = OpTypeFunction %void
|
%84 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %84
|
%main = OpFunction %void None %84
|
||||||
%87 = OpLabel
|
%87 = OpLabel
|
||||||
%89 = OpLoad %3 %t_rgba8unorm_r
|
|
||||||
%91 = OpLoad %7 %t_rgba8snorm_r
|
|
||||||
%93 = OpLoad %10 %t_rgba8uint_r
|
|
||||||
%95 = OpLoad %14 %t_rgba8sint_r
|
|
||||||
%97 = OpLoad %18 %t_rgba16uint_r
|
|
||||||
%99 = OpLoad %21 %t_rgba16sint_r
|
|
||||||
%101 = OpLoad %24 %t_rgba16float_r
|
|
||||||
%103 = OpLoad %27 %t_r32uint_r
|
|
||||||
%105 = OpLoad %30 %t_r32sint_r
|
|
||||||
%107 = OpLoad %33 %t_r32float_r
|
|
||||||
%109 = OpLoad %36 %t_rg32uint_r
|
|
||||||
%111 = OpLoad %39 %t_rg32sint_r
|
|
||||||
%113 = OpLoad %42 %t_rg32float_r
|
|
||||||
%115 = OpLoad %45 %t_rgba32uint_r
|
|
||||||
%117 = OpLoad %48 %t_rgba32sint_r
|
|
||||||
%119 = OpLoad %51 %t_rgba32float_r
|
|
||||||
%121 = OpLoad %3 %t_rgba8unorm_w
|
|
||||||
%123 = OpLoad %7 %t_rgba8snorm_w
|
|
||||||
%125 = OpLoad %10 %t_rgba8uint_w
|
|
||||||
%127 = OpLoad %14 %t_rgba8sint_w
|
|
||||||
%129 = OpLoad %18 %t_rgba16uint_w
|
|
||||||
%131 = OpLoad %21 %t_rgba16sint_w
|
|
||||||
%133 = OpLoad %24 %t_rgba16float_w
|
|
||||||
%135 = OpLoad %27 %t_r32uint_w
|
|
||||||
%137 = OpLoad %30 %t_r32sint_w
|
|
||||||
%139 = OpLoad %33 %t_r32float_w
|
|
||||||
%141 = OpLoad %36 %t_rg32uint_w
|
|
||||||
%143 = OpLoad %39 %t_rg32sint_w
|
|
||||||
%145 = OpLoad %42 %t_rg32float_w
|
|
||||||
%147 = OpLoad %45 %t_rgba32uint_w
|
|
||||||
%149 = OpLoad %48 %t_rgba32sint_w
|
|
||||||
%151 = OpLoad %51 %t_rgba32float_w
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 152
|
; Bound: 120
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpCapability StorageImageExtendedFormats
|
OpCapability StorageImageExtendedFormats
|
||||||
|
@ -224,37 +224,5 @@
|
||||||
%84 = OpTypeFunction %void
|
%84 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %84
|
%main = OpFunction %void None %84
|
||||||
%87 = OpLabel
|
%87 = OpLabel
|
||||||
%89 = OpLoad %3 %t_rgba8unorm_r
|
|
||||||
%91 = OpLoad %7 %t_rgba8snorm_r
|
|
||||||
%93 = OpLoad %10 %t_rgba8uint_r
|
|
||||||
%95 = OpLoad %14 %t_rgba8sint_r
|
|
||||||
%97 = OpLoad %18 %t_rgba16uint_r
|
|
||||||
%99 = OpLoad %21 %t_rgba16sint_r
|
|
||||||
%101 = OpLoad %24 %t_rgba16float_r
|
|
||||||
%103 = OpLoad %27 %t_r32uint_r
|
|
||||||
%105 = OpLoad %30 %t_r32sint_r
|
|
||||||
%107 = OpLoad %33 %t_r32float_r
|
|
||||||
%109 = OpLoad %36 %t_rg32uint_r
|
|
||||||
%111 = OpLoad %39 %t_rg32sint_r
|
|
||||||
%113 = OpLoad %42 %t_rg32float_r
|
|
||||||
%115 = OpLoad %45 %t_rgba32uint_r
|
|
||||||
%117 = OpLoad %48 %t_rgba32sint_r
|
|
||||||
%119 = OpLoad %51 %t_rgba32float_r
|
|
||||||
%121 = OpLoad %3 %t_rgba8unorm_w
|
|
||||||
%123 = OpLoad %7 %t_rgba8snorm_w
|
|
||||||
%125 = OpLoad %10 %t_rgba8uint_w
|
|
||||||
%127 = OpLoad %14 %t_rgba8sint_w
|
|
||||||
%129 = OpLoad %18 %t_rgba16uint_w
|
|
||||||
%131 = OpLoad %21 %t_rgba16sint_w
|
|
||||||
%133 = OpLoad %24 %t_rgba16float_w
|
|
||||||
%135 = OpLoad %27 %t_r32uint_w
|
|
||||||
%137 = OpLoad %30 %t_r32sint_w
|
|
||||||
%139 = OpLoad %33 %t_r32float_w
|
|
||||||
%141 = OpLoad %36 %t_rg32uint_w
|
|
||||||
%143 = OpLoad %39 %t_rg32sint_w
|
|
||||||
%145 = OpLoad %42 %t_rg32float_w
|
|
||||||
%147 = OpLoad %45 %t_rgba32uint_w
|
|
||||||
%149 = OpLoad %48 %t_rgba32sint_w
|
|
||||||
%151 = OpLoad %51 %t_rgba32float_w
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 14
|
; Bound: 13
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -21,6 +21,5 @@
|
||||||
%main = OpFunction %void None %1
|
%main = OpFunction %void None %1
|
||||||
%4 = OpLabel
|
%4 = OpLabel
|
||||||
%v = OpVariable %_ptr_Function__arr_int_uint_3 Function %11
|
%v = OpVariable %_ptr_Function__arr_int_uint_3 Function %11
|
||||||
%13 = OpLoad %_arr_int_uint_3 %v
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 13
|
; Bound: 12
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -19,6 +19,5 @@
|
||||||
%main = OpFunction %void None %1
|
%main = OpFunction %void None %1
|
||||||
%4 = OpLabel
|
%4 = OpLabel
|
||||||
%v = OpVariable %_ptr_Function_mat2v3float Function %10
|
%v = OpVariable %_ptr_Function_mat2v3float Function %10
|
||||||
%12 = OpLoad %mat2v3float %v
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 11
|
; Bound: 10
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -17,6 +17,5 @@
|
||||||
%main = OpFunction %void None %1
|
%main = OpFunction %void None %1
|
||||||
%4 = OpLabel
|
%4 = OpLabel
|
||||||
%v = OpVariable %_ptr_Function_int Function %8
|
%v = OpVariable %_ptr_Function_int Function %8
|
||||||
%10 = OpLoad %int %v
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 13
|
; Bound: 12
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -24,6 +24,5 @@
|
||||||
%main = OpFunction %void None %1
|
%main = OpFunction %void None %1
|
||||||
%4 = OpLabel
|
%4 = OpLabel
|
||||||
%v = OpVariable %_ptr_Function_S Function %10
|
%v = OpVariable %_ptr_Function_S Function %10
|
||||||
%12 = OpLoad %S %v
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 12
|
; Bound: 11
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -18,6 +18,5 @@
|
||||||
%main = OpFunction %void None %1
|
%main = OpFunction %void None %1
|
||||||
%4 = OpLabel
|
%4 = OpLabel
|
||||||
%v = OpVariable %_ptr_Function_v3int Function %9
|
%v = OpVariable %_ptr_Function_v3int Function %9
|
||||||
%11 = OpLoad %v3int %v
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 14
|
; Bound: 13
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -21,6 +21,5 @@
|
||||||
%8 = OpTypeFunction %void
|
%8 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %8
|
%main = OpFunction %void None %8
|
||||||
%11 = OpLabel
|
%11 = OpLabel
|
||||||
%13 = OpLoad %_arr_int_uint_3 %v
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 13
|
; Bound: 12
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -19,6 +19,5 @@
|
||||||
%7 = OpTypeFunction %void
|
%7 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %7
|
%main = OpFunction %void None %7
|
||||||
%10 = OpLabel
|
%10 = OpLabel
|
||||||
%12 = OpLoad %mat2v3float %v
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 11
|
; Bound: 10
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -17,6 +17,5 @@
|
||||||
%5 = OpTypeFunction %void
|
%5 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %5
|
%main = OpFunction %void None %5
|
||||||
%8 = OpLabel
|
%8 = OpLabel
|
||||||
%10 = OpLoad %int %v
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 13
|
; Bound: 12
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -24,6 +24,5 @@
|
||||||
%7 = OpTypeFunction %void
|
%7 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %7
|
%main = OpFunction %void None %7
|
||||||
%10 = OpLabel
|
%10 = OpLabel
|
||||||
%12 = OpLoad %S %v
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 12
|
; Bound: 11
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -18,6 +18,5 @@
|
||||||
%6 = OpTypeFunction %void
|
%6 = OpTypeFunction %void
|
||||||
%main = OpFunction %void None %6
|
%main = OpFunction %void None %6
|
||||||
%9 = OpLabel
|
%9 = OpLabel
|
||||||
%11 = OpLoad %v3int %v
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 44
|
; Bound: 43
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
%uint_1 = OpConstant %uint 1
|
%uint_1 = OpConstant %uint 1
|
||||||
%uint_2 = OpConstant %uint 2
|
%uint_2 = OpConstant %uint 2
|
||||||
%uint_264 = OpConstant %uint 264
|
%uint_264 = OpConstant %uint 264
|
||||||
%39 = OpTypeFunction %void
|
%38 = OpTypeFunction %void
|
||||||
%main_inner = OpFunction %void None %9
|
%main_inner = OpFunction %void None %9
|
||||||
%local_invocation_index = OpFunctionParameter %uint
|
%local_invocation_index = OpFunctionParameter %uint
|
||||||
%13 = OpLabel
|
%13 = OpLabel
|
||||||
|
@ -63,12 +63,11 @@
|
||||||
OpBranch %17
|
OpBranch %17
|
||||||
%18 = OpLabel
|
%18 = OpLabel
|
||||||
OpControlBarrier %uint_2 %uint_2 %uint_264
|
OpControlBarrier %uint_2 %uint_2 %uint_264
|
||||||
%38 = OpLoad %_arr_int_uint_3 %v
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%main = OpFunction %void None %39
|
%main = OpFunction %void None %38
|
||||||
%41 = OpLabel
|
%40 = OpLabel
|
||||||
%43 = OpLoad %uint %local_invocation_index_1
|
%42 = OpLoad %uint %local_invocation_index_1
|
||||||
%42 = OpFunctionCall %void %main_inner %43
|
%41 = OpFunctionCall %void %main_inner %42
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 25
|
; Bound: 24
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -26,18 +26,17 @@
|
||||||
%14 = OpConstantNull %mat2v3float
|
%14 = OpConstantNull %mat2v3float
|
||||||
%uint_2 = OpConstant %uint 2
|
%uint_2 = OpConstant %uint 2
|
||||||
%uint_264 = OpConstant %uint 264
|
%uint_264 = OpConstant %uint 264
|
||||||
%20 = OpTypeFunction %void
|
%19 = OpTypeFunction %void
|
||||||
%main_inner = OpFunction %void None %9
|
%main_inner = OpFunction %void None %9
|
||||||
%local_invocation_index = OpFunctionParameter %uint
|
%local_invocation_index = OpFunctionParameter %uint
|
||||||
%13 = OpLabel
|
%13 = OpLabel
|
||||||
OpStore %v %14
|
OpStore %v %14
|
||||||
OpControlBarrier %uint_2 %uint_2 %uint_264
|
OpControlBarrier %uint_2 %uint_2 %uint_264
|
||||||
%19 = OpLoad %mat2v3float %v
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%main = OpFunction %void None %20
|
%main = OpFunction %void None %19
|
||||||
%22 = OpLabel
|
%21 = OpLabel
|
||||||
%24 = OpLoad %uint %local_invocation_index_1
|
%23 = OpLoad %uint %local_invocation_index_1
|
||||||
%23 = OpFunctionCall %void %main_inner %24
|
%22 = OpFunctionCall %void %main_inner %23
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 23
|
; Bound: 22
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -24,18 +24,17 @@
|
||||||
%12 = OpConstantNull %int
|
%12 = OpConstantNull %int
|
||||||
%uint_2 = OpConstant %uint 2
|
%uint_2 = OpConstant %uint 2
|
||||||
%uint_264 = OpConstant %uint 264
|
%uint_264 = OpConstant %uint 264
|
||||||
%18 = OpTypeFunction %void
|
%17 = OpTypeFunction %void
|
||||||
%main_inner = OpFunction %void None %7
|
%main_inner = OpFunction %void None %7
|
||||||
%local_invocation_index = OpFunctionParameter %uint
|
%local_invocation_index = OpFunctionParameter %uint
|
||||||
%11 = OpLabel
|
%11 = OpLabel
|
||||||
OpStore %v %12
|
OpStore %v %12
|
||||||
OpControlBarrier %uint_2 %uint_2 %uint_264
|
OpControlBarrier %uint_2 %uint_2 %uint_264
|
||||||
%17 = OpLoad %int %v
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%main = OpFunction %void None %18
|
%main = OpFunction %void None %17
|
||||||
%20 = OpLabel
|
%19 = OpLabel
|
||||||
%22 = OpLoad %uint %local_invocation_index_1
|
%21 = OpLoad %uint %local_invocation_index_1
|
||||||
%21 = OpFunctionCall %void %main_inner %22
|
%20 = OpFunctionCall %void %main_inner %21
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 25
|
; Bound: 24
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -31,18 +31,17 @@
|
||||||
%14 = OpConstantNull %S
|
%14 = OpConstantNull %S
|
||||||
%uint_2 = OpConstant %uint 2
|
%uint_2 = OpConstant %uint 2
|
||||||
%uint_264 = OpConstant %uint 264
|
%uint_264 = OpConstant %uint 264
|
||||||
%20 = OpTypeFunction %void
|
%19 = OpTypeFunction %void
|
||||||
%main_inner = OpFunction %void None %9
|
%main_inner = OpFunction %void None %9
|
||||||
%local_invocation_index = OpFunctionParameter %uint
|
%local_invocation_index = OpFunctionParameter %uint
|
||||||
%13 = OpLabel
|
%13 = OpLabel
|
||||||
OpStore %v %14
|
OpStore %v %14
|
||||||
OpControlBarrier %uint_2 %uint_2 %uint_264
|
OpControlBarrier %uint_2 %uint_2 %uint_264
|
||||||
%19 = OpLoad %S %v
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%main = OpFunction %void None %20
|
%main = OpFunction %void None %19
|
||||||
%22 = OpLabel
|
%21 = OpLabel
|
||||||
%24 = OpLoad %uint %local_invocation_index_1
|
%23 = OpLoad %uint %local_invocation_index_1
|
||||||
%23 = OpFunctionCall %void %main_inner %24
|
%22 = OpFunctionCall %void %main_inner %23
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
; SPIR-V
|
; SPIR-V
|
||||||
; Version: 1.3
|
; Version: 1.3
|
||||||
; Generator: Google Tint Compiler; 0
|
; Generator: Google Tint Compiler; 0
|
||||||
; Bound: 24
|
; Bound: 23
|
||||||
; Schema: 0
|
; Schema: 0
|
||||||
OpCapability Shader
|
OpCapability Shader
|
||||||
OpMemoryModel Logical GLSL450
|
OpMemoryModel Logical GLSL450
|
||||||
|
@ -25,18 +25,17 @@
|
||||||
%13 = OpConstantNull %v3int
|
%13 = OpConstantNull %v3int
|
||||||
%uint_2 = OpConstant %uint 2
|
%uint_2 = OpConstant %uint 2
|
||||||
%uint_264 = OpConstant %uint 264
|
%uint_264 = OpConstant %uint 264
|
||||||
%19 = OpTypeFunction %void
|
%18 = OpTypeFunction %void
|
||||||
%main_inner = OpFunction %void None %8
|
%main_inner = OpFunction %void None %8
|
||||||
%local_invocation_index = OpFunctionParameter %uint
|
%local_invocation_index = OpFunctionParameter %uint
|
||||||
%12 = OpLabel
|
%12 = OpLabel
|
||||||
OpStore %v %13
|
OpStore %v %13
|
||||||
OpControlBarrier %uint_2 %uint_2 %uint_264
|
OpControlBarrier %uint_2 %uint_2 %uint_264
|
||||||
%18 = OpLoad %v3int %v
|
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
%main = OpFunction %void None %19
|
%main = OpFunction %void None %18
|
||||||
%21 = OpLabel
|
%20 = OpLabel
|
||||||
%23 = OpLoad %uint %local_invocation_index_1
|
%22 = OpLoad %uint %local_invocation_index_1
|
||||||
%22 = OpFunctionCall %void %main_inner %23
|
%21 = OpFunctionCall %void %main_inner %22
|
||||||
OpReturn
|
OpReturn
|
||||||
OpFunctionEnd
|
OpFunctionEnd
|
||||||
|
|
Loading…
Reference in New Issue