Home
last modified time | relevance | path

Searched refs:Nref (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/src/Pipeline/
DShaderCore.cpp1407 …oid ShaderCore::forward1(Vector4f &dst, const Vector4f &N, const Vector4f &I, const Vector4f &Nref) in forward1() argument
1409 Int4 flip = CmpNLT(Nref.x * I.x, Float4(0.0f)) & Int4(0x80000000); in forward1()
1414 …oid ShaderCore::forward2(Vector4f &dst, const Vector4f &N, const Vector4f &I, const Vector4f &Nref) in forward2() argument
1416 Int4 flip = CmpNLT(dot2(Nref, I), Float4(0.0f)) & Int4(0x80000000); in forward2()
1422 …oid ShaderCore::forward3(Vector4f &dst, const Vector4f &N, const Vector4f &I, const Vector4f &Nref) in forward3() argument
1424 Int4 flip = CmpNLT(dot3(Nref, I), Float4(0.0f)) & Int4(0x80000000); in forward3()
1431 …oid ShaderCore::forward4(Vector4f &dst, const Vector4f &N, const Vector4f &I, const Vector4f &Nref) in forward4() argument
1433 Int4 flip = CmpNLT(dot4(Nref, I), Float4(0.0f)) & Int4(0x80000000); in forward4()
/external/swiftshader/src/Shader/
DShaderCore.cpp1407 …oid ShaderCore::forward1(Vector4f &dst, const Vector4f &N, const Vector4f &I, const Vector4f &Nref) in forward1() argument
1409 Int4 flip = CmpNLT(Nref.x * I.x, Float4(0.0f)) & Int4(0x80000000); in forward1()
1414 …oid ShaderCore::forward2(Vector4f &dst, const Vector4f &N, const Vector4f &I, const Vector4f &Nref) in forward2() argument
1416 Int4 flip = CmpNLT(dot2(Nref, I), Float4(0.0f)) & Int4(0x80000000); in forward2()
1422 …oid ShaderCore::forward3(Vector4f &dst, const Vector4f &N, const Vector4f &I, const Vector4f &Nref) in forward3() argument
1424 Int4 flip = CmpNLT(dot3(Nref, I), Float4(0.0f)) & Int4(0x80000000); in forward3()
1431 …oid ShaderCore::forward4(Vector4f &dst, const Vector4f &N, const Vector4f &I, const Vector4f &Nref) in forward4() argument
1433 Int4 flip = CmpNLT(dot4(Nref, I), Float4(0.0f)) & Int4(0x80000000); in forward4()
/external/skqp/src/sksl/
Dsksl.inc138 $genType faceforward($genType N, $genType I, $genType Nref);
139 $genHType faceforward($genHType N, $genHType I, $genHType Nref);
140 $genDType faceforward($genDType N, $genDType I, $genDType Nref);
/external/skia/src/sksl/
Dsksl.inc182 $genType faceforward($genType N, $genType I, $genType Nref);
183 $genHType faceforward($genHType N, $genHType I, $genHType Nref);
184 $genDType faceforward($genDType N, $genDType I, $genDType Nref);
/external/mesa3d/src/compiler/glsl/
Dbuiltin_functions.cpp4516 ir_variable *Nref = in_var(type, "Nref"); in _faceforward() local
4517 MAKE_SIG(type, avail, 3, N, I, Nref); in _faceforward()
4519 body.emit(if_tree(less(dot(Nref, I), IMM_FP(type, 0.0)), in _faceforward()