Lines Matching defs:inputId
1346 SpvId SPIRVCodeGenerator::castScalarToFloat(SpvId inputId, const Type& inputType,
1350 return inputId;
1360 inputId, oneID, zeroID, out);
1362 this->writeInstruction(SpvOpConvertSToF, this->getType(outputType), result, inputId, out);
1364 this->writeInstruction(SpvOpConvertUToF, this->getType(outputType), result, inputId, out);
1380 SpvId SPIRVCodeGenerator::castScalarToSignedInt(SpvId inputId, const Type& inputType,
1384 return inputId;
1394 inputId, oneID, zeroID, out);
1396 this->writeInstruction(SpvOpConvertFToS, this->getType(outputType), result, inputId, out);
1398 this->writeInstruction(SpvOpBitcast, this->getType(outputType), result, inputId, out);
1415 SpvId SPIRVCodeGenerator::castScalarToUnsignedInt(SpvId inputId, const Type& inputType,
1419 return inputId;
1429 inputId, oneID, zeroID, out);
1431 this->writeInstruction(SpvOpConvertFToU, this->getType(outputType), result, inputId, out);
1433 this->writeInstruction(SpvOpBitcast, this->getType(outputType), result, inputId, out);
1450 SpvId SPIRVCodeGenerator::castScalarToBoolean(SpvId inputId, const Type& inputType,
1454 return inputId;
1463 inputId, zeroID, out);
1468 inputId, zeroID, out);
1473 inputId, zeroID, out);