Files
SPIRV-Interpreter/example/shader.spvasm
Kbz-8 14e802709c
All checks were successful
Test / build (push) Successful in 46s
Build / build (push) Successful in 58s
adding OpFMul
2026-01-12 16:59:53 +01:00

51 lines
2.0 KiB
Plaintext

; SPIR-V
; Version: 1.0
; Generator: SirLynix Nazara ShaderLang Compiler; 4226
; Bound: 29
; Schema: 0
OpCapability Shader
OpMemoryModel Logical GLSL450
OpEntryPoint Fragment %main "main" %color
OpExecutionMode %main OriginUpperLeft
OpSource NZSL 4198400
OpSourceExtension "Version: 1.1"
OpName %FragOut "FragOut"
OpMemberName %FragOut 0 "color"
OpName %color "color"
OpName %main "main"
OpDecorate %color Location 0
OpMemberDecorate %FragOut 0 Offset 0
%void = OpTypeVoid
%2 = OpTypeFunction %void
%float = OpTypeFloat 32
%v4float = OpTypeVector %float 4
%_ptr_Output_v4float = OpTypePointer Output %v4float
%FragOut = OpTypeStruct %v4float
%float_2 = OpConstant %float 2
%float_8 = OpConstant %float 8
%float_0_25 = OpConstant %float 0.25
%_ptr_Function_v4float = OpTypePointer Function %v4float
%_ptr_Function_FragOut = OpTypePointer Function %FragOut
%int = OpTypeInt 32 1
%int_0 = OpConstant %int 0
%float_4 = OpConstant %float 4
%float_3 = OpConstant %float 3
%float_1 = OpConstant %float 1
%color = OpVariable %_ptr_Output_v4float Output
%main = OpFunction %void None %2
%19 = OpLabel
%20 = OpVariable %_ptr_Function_v4float Function
%21 = OpVariable %_ptr_Function_FragOut Function
%22 = OpCompositeConstruct %v4float %float_2 %float_2 %float_8 %float_0_25
OpStore %20 %22
%23 = OpCompositeConstruct %v4float %float_4 %float_3 %float_2 %float_1
%24 = OpLoad %v4float %20
%25 = OpFMul %v4float %23 %24
%26 = OpAccessChain %_ptr_Function_v4float %21 %int_0
OpStore %26 %25
%27 = OpLoad %FragOut %21
%28 = OpCompositeExtract %v4float %27 0
OpStore %color %28
OpReturn
OpFunctionEnd