1OpCapability Shader 2%1 = OpExtInstImport "GLSL.std.450" 3OpMemoryModel Logical GLSL450 4OpEntryPoint Fragment %main "main" %sk_FragColor %sk_Clockwise 5OpExecutionMode %main OriginUpperLeft 6OpName %sk_FragColor "sk_FragColor" 7OpName %sk_Clockwise "sk_Clockwise" 8OpName %test "test" 9OpName %main "main" 10OpDecorate %sk_FragColor RelaxedPrecision 11OpDecorate %sk_FragColor Location 0 12OpDecorate %sk_FragColor Index 0 13OpDecorate %sk_Clockwise BuiltIn FrontFacing 14OpDecorate %test RelaxedPrecision 15OpDecorate %_arr_float_int_4 ArrayStride 16 16OpDecorate %19 RelaxedPrecision 17OpDecorate %26 RelaxedPrecision 18OpDecorate %29 RelaxedPrecision 19OpDecorate %32 RelaxedPrecision 20OpDecorate %35 RelaxedPrecision 21OpDecorate %36 RelaxedPrecision 22%float = OpTypeFloat 32 23%v4float = OpTypeVector %float 4 24%_ptr_Output_v4float = OpTypePointer Output %v4float 25%sk_FragColor = OpVariable %_ptr_Output_v4float Output 26%bool = OpTypeBool 27%_ptr_Input_bool = OpTypePointer Input %bool 28%sk_Clockwise = OpVariable %_ptr_Input_bool Input 29%int = OpTypeInt 32 1 30%int_4 = OpConstant %int 4 31%_arr_float_int_4 = OpTypeArray %float %int_4 32%_ptr_Private__arr_float_int_4 = OpTypePointer Private %_arr_float_int_4 33%test = OpVariable %_ptr_Private__arr_float_int_4 Private 34%float_1 = OpConstant %float 1 35%float_2 = OpConstant %float 2 36%float_3 = OpConstant %float 3 37%float_4 = OpConstant %float 4 38%void = OpTypeVoid 39%21 = OpTypeFunction %void 40%int_0 = OpConstant %int 0 41%_ptr_Private_float = OpTypePointer Private %float 42%int_1 = OpConstant %int 1 43%int_2 = OpConstant %int 2 44%int_3 = OpConstant %int 3 45%main = OpFunction %void None %21 46%22 = OpLabel 47%19 = OpCompositeConstruct %_arr_float_int_4 %float_1 %float_2 %float_3 %float_4 48OpStore %test %19 49%24 = OpAccessChain %_ptr_Private_float %test %int_0 50%26 = OpLoad %float %24 51%28 = OpAccessChain %_ptr_Private_float %test %int_1 52%29 = OpLoad %float %28 53%31 = OpAccessChain %_ptr_Private_float %test %int_2 54%32 = OpLoad %float %31 55%34 = OpAccessChain %_ptr_Private_float %test %int_3 56%35 = OpLoad %float %34 57%36 = OpCompositeConstruct %v4float %26 %29 %32 %35 58OpStore %sk_FragColor %36 59OpReturn 60OpFunctionEnd 61