mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-08-05 19:55:37 +00:00
Also add abstract overloads. Bug: tint:1581 Fixed: tint:1768 Change-Id: Icda465e0cfe960b77823c2135f0cfe8f82ed394f Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/111441 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Antonio Maiorano <amaiorano@google.com> Reviewed-by: Dan Sinclair <dsinclair@chromium.org> Commit-Queue: Ben Clayton <bclayton@google.com>
30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
; SPIR-V
|
|
; Version: 1.3
|
|
; Generator: Google Tint Compiler; 0
|
|
; Bound: 13
|
|
; Schema: 0
|
|
OpCapability Shader
|
|
%10 = OpExtInstImport "GLSL.std.450"
|
|
OpMemoryModel Logical GLSL450
|
|
OpEntryPoint GLCompute %main "main"
|
|
OpExecutionMode %main LocalSize 1 1 1
|
|
OpName %main "main"
|
|
OpName %__frexp_result "__frexp_result"
|
|
OpMemberName %__frexp_result 0 "fract"
|
|
OpMemberName %__frexp_result 1 "exp"
|
|
OpMemberDecorate %__frexp_result 0 Offset 0
|
|
OpMemberDecorate %__frexp_result 1 Offset 4
|
|
%void = OpTypeVoid
|
|
%1 = OpTypeFunction %void
|
|
%float = OpTypeFloat 32
|
|
%float_1_25 = OpConstant %float 1.25
|
|
%int = OpTypeInt 32 1
|
|
%__frexp_result = OpTypeStruct %float %int
|
|
%main = OpFunction %void None %1
|
|
%4 = OpLabel
|
|
%7 = OpExtInst %__frexp_result %10 FrexpStruct %float_1_25
|
|
%11 = OpCompositeExtract %float %7 0
|
|
%12 = OpCompositeExtract %int %7 1
|
|
OpReturn
|
|
OpFunctionEnd
|