blob: 0f04f812d6237fef24e265961451885f84500c71 [file] [log] [blame]
; Copyright 2013 The Flutter Authors. All rights reserved.
; Use of this source code is governed by a BSD-style license that can be
; found in the LICENSE file.
;
; SPIR-V
; Version: 1.0
; Generator: Khronos Glslang Reference Front End; 8
; Bound: 12
; Schema: 0
;
; A matrix type is defined with a component count not in the set of
; {2, 3, 4}, on line 24.
;
OpCapability Shader
%1 = OpExtInstImport "GLSL.std.450"
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %main "main" %oColor
OpExecutionMode %main OriginLowerLeft
OpSource ESSL 320
OpName %main "main"
OpName %oColor "oColor"
OpDecorate %oColor RelaxedPrecision
OpDecorate %oColor Location 0
%void = OpTypeVoid
%3 = OpTypeFunction %void
%float = OpTypeFloat 32
%v4float = OpTypeVector %float 4
%13 = OpTypeMatrix %v4float 5
%_ptr_Output_v4float = OpTypePointer Output %v4float
%oColor = OpVariable %_ptr_Output_v4float Output
%float_0 = OpConstant %float 0
%11 = OpConstantComposite %v4float %float_0 %float_0 %float_0 %float_0
%main = OpFunction %void None %3
%5 = OpLabel
OpStore %oColor %11
OpReturn
OpFunctionEnd