Home
last modified time | relevance | path

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

/external/swiftshader/src/Shader/
DConstants.cpp360 …static const float4 unscaleInt = {1.0f / 0x7FFFFFFF, 1.0f / 0x7FFFFFFF, 1.0f / 0x7FFFFFFF, 1.0f / … in Constants() local
368 memcpy(&this->unscaleInt, &unscaleInt, sizeof(unscaleInt)); in Constants()
DConstants.hpp106 float4 unscaleInt; member
DVertexRoutine.cpp275 if(stream.count >= 1) v.x *= *Pointer<Float4>(constants + OFFSET(Constants, unscaleInt)); in readStream()
276 if(stream.count >= 2) v.y *= *Pointer<Float4>(constants + OFFSET(Constants, unscaleInt)); in readStream()
277 if(stream.count >= 3) v.z *= *Pointer<Float4>(constants + OFFSET(Constants, unscaleInt)); in readStream()
278 if(stream.count >= 4) v.w *= *Pointer<Float4>(constants + OFFSET(Constants, unscaleInt)); in readStream()