Searched refs:makeIntConstant (Results 1 - 3 of 3) sorted by relevance
/third_party/glslang/SPIRV/ |
H A D | SpvBuilder.h | 363 { return makeIntConstant(makeIntType(8), (unsigned)i, specConstant); } in makeInt8Constant() 365 { return makeIntConstant(makeUintType(8), u, specConstant); } in makeUint8Constant() 367 { return makeIntConstant(makeIntType(16), (unsigned)i, specConstant); } in makeInt16Constant() 369 { return makeIntConstant(makeUintType(16), u, specConstant); } in makeUint16Constant() 370 Id makeIntConstant(int i, bool specConstant = false) in makeIntConstant() function in spv::Builder 371 { return makeIntConstant(makeIntType(32), (unsigned)i, specConstant); } in makeIntConstant() 373 { return makeIntConstant(makeUintType(32), u, specConstant); } in makeUintConstant() 862 Id makeIntConstant(Id typeId, unsigned value, bool specConstant);
|
H A D | GlslangToSpv.cpp | 2265 builder.accessChainPush(builder.makeIntConstant(spvIndex), in visitBinary() 2564 length = builder.createBinOp(spv::OpIAdd, builder.makeIntType(32), length, builder.makeIntConstant(0)); in visitUnary() 2739 one = builder.makeIntConstant(1); in visitUnary() 3618 operands.push_back(builder.makeIntConstant(cond ? 1 : 0)); in visitAggregate() 5199 builder.accessChainPush(builder.makeIntConstant(index), TranslateCoherent(type), in multiTypeStore() 5220 builder.accessChainPush(builder.makeIntConstant(m), TranslateCoherent(type), in multiTypeStore() 5842 spv::Id zero = builder.makeIntConstant(0); in createImageTextureFunctionCall() 6060 spv::Id zero = builder.makeIntConstant(0); in createImageTextureFunctionCall() 6198 params.component = builder.makeIntConstant(0); in createImageTextureFunctionCall() 6267 builder.accessChainPush(builder.makeIntConstant( in createImageTextureFunctionCall() [all...] |
H A D | SpvBuilder.cpp | 1584 Id Builder::makeIntConstant(Id typeId, unsigned value, bool specConstant) in makeIntConstant() function in spv::Builder
|
Completed in 22 milliseconds