Home
last modified time | relevance | path

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

/third_party/glslang/SPIRV/
DSpvBuilder.h171 Id makeUintType(int width) { return makeIntegerType(width, false); } in makeUintType() function
300 { return makeIntConstant(makeUintType(8), u, specConstant); }
304 { return makeIntConstant(makeUintType(16), u, specConstant); }
308 { return makeIntConstant(makeUintType(32), u, specConstant); }
312 { return makeInt64Constant(makeUintType(64), u, specConstant); }
DSpvBuilder.cpp1588 spv::Id intType = makeUintType(32); in createArrayLength()
1599 spv::Id intType = makeUintType(32); in createCooperativeMatrixLength()
2218 Id intType = isUnsignedResult ? makeUintType(32) : makeIntType(32); in createTextureQueryCall()
2231 resultType = isUnsignedResult ? makeUintType(32) : makeIntType(32); in createTextureQueryCall()
3043 Id mapType = makeVectorType(makeUintType(32), (int)accessChain.swizzle.size()); in remapDynamicSwizzle()
3047 … accessChain.component = createVectorExtractDynamic(map, makeUintType(32), accessChain.component); in remapDynamicSwizzle()
DGlslangToSpv.cpp2069 std::pair<spv::Id, spv::Id> ret(builder.makeVectorType(builder.makeUintType(32), 4), in getForcedType()
2070 builder.makeUintType(64)); in getForcedType()
3576 case glslang::EbtUint: return builder.makeUintType(32); in getSampledType()
3646 spvType = builder.makeUintType(32); in convertGlslangToSpvType()
3654 spvType = builder.makeUintType(32); in convertGlslangToSpvType()
3670 spvType = builder.makeUintType(8); in convertGlslangToSpvType()
3676 spvType = builder.makeUintType(16); in convertGlslangToSpvType()
3682 spvType = builder.makeUintType(64); in convertGlslangToSpvType()
3686 spvType = builder.makeUintType(32); in convertGlslangToSpvType()
6317 type = builder.makeUintType(width); in createIntWidthConversion()
[all …]