1 OpCapability Shader 2 %1 = OpExtInstImport "GLSL.std.450" 3 OpMemoryModel Logical GLSL450 4 OpEntryPoint Fragment %main "main" %sk_FragColor 5 OpExecutionMode %main OriginUpperLeft 6 OpName %sk_FragColor "sk_FragColor" 7 OpName %main "main" 8 OpDecorate %sk_FragColor RelaxedPrecision 9 OpDecorate %sk_FragColor Location 0 10 OpDecorate %sk_FragColor Index 0 11 %float = OpTypeFloat 32 12 %v4float = OpTypeVector %float 4 13%_ptr_Output_v4float = OpTypePointer Output %v4float 14%sk_FragColor = OpVariable %_ptr_Output_v4float Output 15 %void = OpTypeVoid 16 %8 = OpTypeFunction %void 17 %float_0 = OpConstant %float 0 18 %11 = OpConstantComposite %v4float %float_0 %float_0 %float_0 %float_0 19 %main = OpFunction %void None %8 20 %9 = OpLabel 21 OpStore %sk_FragColor %11 22 OpReturn 23 OpFunctionEnd 24