Home
last modified time | relevance | path

Searched refs:makeIntConstant (Results 1 – 3 of 3) sorted by relevance

/third_party/glslang/SPIRV/
DSpvBuilder.h298 { return makeIntConstant(makeIntType(8), (unsigned)i, specConstant); }
300 { return makeIntConstant(makeUintType(8), u, specConstant); }
302 { return makeIntConstant(makeIntType(16), (unsigned)i, specConstant); }
304 { return makeIntConstant(makeUintType(16), u, specConstant); }
305 Id makeIntConstant(int i, bool specConstant = false)
306 { return makeIntConstant(makeIntType(32), (unsigned)i, specConstant); }
308 { return makeIntConstant(makeUintType(32), u, specConstant); }
775 Id makeIntConstant(Id typeId, unsigned value, bool specConstant);
DGlslangToSpv.cpp1942 builder.accessChainPush(builder.makeIntConstant(spvIndex), in visitBinary()
2189 …th = builder.createBinOp(spv::OpIAdd, builder.makeIntType(32), length, builder.makeIntConstant(0)); in visitUnary()
2296 one = builder.makeIntConstant(1); in visitUnary()
3032 operands.push_back(builder.makeIntConstant(cond ? 1 : 0)); in visitAggregate()
4236 builder.accessChainPush(builder.makeIntConstant(index), TranslateCoherent(type), in multiTypeStore()
4257 builder.accessChainPush(builder.makeIntConstant(m), TranslateCoherent(type), in multiTypeStore()
4827 spv::Id zero = builder.makeIntConstant(0); in createImageTextureFunctionCall()
5037 spv::Id zero = builder.makeIntConstant(0); in createImageTextureFunctionCall()
5186 params.component = builder.makeIntConstant(0); in createImageTextureFunctionCall()
5256 builder.accessChainPush(builder.makeIntConstant(i), flags, 0); in createImageTextureFunctionCall()
[all …]
DSpvBuilder.cpp901 Id Builder::makeIntConstant(Id typeId, unsigned value, bool specConstant) in makeIntConstant() function in spv::Builder