Home
last modified time | relevance | path

Searched refs:canImplicitlyPromote (Results 1 – 4 of 4) sorted by relevance

/external/deqp-deps/glslang/glslang/MachineIndependent/
DIntermediate.cpp998 if (canImplicitlyPromote(node->getBasicType(), type.getBasicType(), op)) in addConversion()
1455 bool TIntermediate::canImplicitlyPromote(TBasicType from, TBasicType to, TOperator op) const in canImplicitlyPromote() function in glslang::TIntermediate
1779 if (canImplicitlyPromote(type1, type0, op)) { in getConversionDestinatonType()
1782 } else if (canImplicitlyPromote(type0, type1, op)) { in getConversionDestinatonType()
1789 if ((type0 == EbtDouble && canImplicitlyPromote(type1, EbtDouble, op)) || in getConversionDestinatonType()
1790 (type1 == EbtDouble && canImplicitlyPromote(type0, EbtDouble, op)) ) { in getConversionDestinatonType()
1793 } else if ((type0 == EbtFloat && canImplicitlyPromote(type1, EbtFloat, op)) || in getConversionDestinatonType()
1794 (type1 == EbtFloat && canImplicitlyPromote(type0, EbtFloat, op)) ) { in getConversionDestinatonType()
1797 } else if ((type0 == EbtFloat16 && canImplicitlyPromote(type1, EbtFloat16, op)) || in getConversionDestinatonType()
1798 (type1 == EbtFloat16 && canImplicitlyPromote(type0, EbtFloat16, op)) ) { in getConversionDestinatonType()
[all …]
Dlocalintermediate.h463 bool canImplicitlyPromote(TBasicType from, TBasicType to, TOperator op = EOpNull) const;
DParseHelper.cpp5906 …if (! intermediate.canImplicitlyPromote(call[i].type->getBasicType(), function[i].type->getBasicTy… in findFunction120()
5910 …if (! intermediate.canImplicitlyPromote(function[i].type->getBasicType(), call[i].type->getBasicTy… in findFunction120()
5992 return intermediate.canImplicitlyPromote(from.getBasicType(), to.getBasicType()); in findFunction400()
6057 return intermediate.canImplicitlyPromote(from.getBasicType(), to.getBasicType()); in findFunctionExplicitTypes()
/external/deqp-deps/glslang/hlsl/
DhlslParseHelper.cpp7385 … if (! intermediate.canImplicitlyPromote(from.getBasicType(), to.getBasicType(), EOpFunctionCall)) in findFunction()