Skip to content

Commit a8f5eef

Browse files
slangbotjkwak-work
authored andcommitted
format code (#43)
1 parent b64b3af commit a8f5eef

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

source/slang/slang-emit-spirv.cpp

+3-6
Original file line numberDiff line numberDiff line change
@@ -1909,8 +1909,8 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
19091909
case kIROp_SPIRVNodePayloadArrayType:
19101910
if (auto nodePayloadArrayType = as<IRSPIRVNodePayloadArrayType>(inst))
19111911
{
1912-
auto newType = emitOpTypeNodePayloadArray(
1913-
inst, nodePayloadArrayType->getRecordType());
1912+
auto newType =
1913+
emitOpTypeNodePayloadArray(inst, nodePayloadArrayType->getRecordType());
19141914

19151915
// TODO: This is a temporary hack.
19161916
// The NodeID must come from an attribute [NodeID("name")].
@@ -1919,10 +1919,7 @@ struct SPIRVEmitContext : public SourceEmitterBase, public SPIRVEmitSharedContex
19191919
SpvInst* spvStr = emitOpConstantString(nullptr, str.getUnownedSlice());
19201920
(void)spvStr;
19211921

1922-
auto r = emitOpDecoratePayloadNodeName(
1923-
nullptr,
1924-
newType,
1925-
spvStr);
1922+
auto r = emitOpDecoratePayloadNodeName(nullptr, newType, spvStr);
19261923
(void)r;
19271924
return newType;
19281925
}

0 commit comments

Comments
 (0)