Home
last modified time | relevance | path

Searched refs:fFloat32Type (Results 1 – 2 of 2) sorted by relevance

/external/skqp/src/sksl/
DSkSLJIT.cpp116 fFloat32Type = LLVMFloatTypeInContext(fContext); in JIT()
117 fFloat32VectorType = LLVMVectorType(fFloat32Type, fVectorCount); in JIT()
118 fFloat32Vector2Type = LLVMVectorType(fFloat32Type, 2); in JIT()
119 fFloat32Vector3Type = LLVMVectorType(fFloat32Type, 3); in JIT()
120 fFloat32Vector4Type = LLVMVectorType(fFloat32Type, 4); in JIT()
175 this->addBuiltinFunction("abs", "fabs", fFloat32Type, { fFloat32Type }); in loadBuiltinFunctions()
176 this->addBuiltinFunction("sin", "sinf", fFloat32Type, { fFloat32Type }); in loadBuiltinFunctions()
177 this->addBuiltinFunction("cos", "cosf", fFloat32Type, { fFloat32Type }); in loadBuiltinFunctions()
178 this->addBuiltinFunction("tan", "tanf", fFloat32Type, { fFloat32Type }); in loadBuiltinFunctions()
179 this->addBuiltinFunction("sqrt", "sqrtf", fFloat32Type, { fFloat32Type }); in loadBuiltinFunctions()
[all …]
DSkSLJIT.h322 LLVMTypeRef fFloat32Type; variable