Home
last modified time | relevance | path

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

/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
DContext.cpp41 mState.depthClearValue = 1.0f; in Context()
42 mState.stencilClearValue = 0; in Context()
44 mState.cullFace = false; in Context()
45 mState.cullMode = GL_BACK; in Context()
46 mState.frontFace = GL_CCW; in Context()
47 mState.depthTest = false; in Context()
48 mState.depthFunc = GL_LESS; in Context()
49 mState.blend = false; in Context()
50 mState.sourceBlendRGB = GL_ONE; in Context()
51 mState.sourceBlendAlpha = GL_ONE; in Context()
[all …]
DContext.h456 State mState; variable
/external/opencv/cv/src/
Dcvmoments.cpp518 cvGetHuMoments( CvMoments * mState, CvHuMoments * HuState ) in cvGetHuMoments() argument
524 if( !mState || !HuState ) in cvGetHuMoments()
528 double m00s = mState->inv_sqrt_m00, m00 = m00s * m00s, s2 = m00 * m00, s3 = s2 * m00s; in cvGetHuMoments()
530 double nu20 = mState->mu20 * s2, in cvGetHuMoments()
531 nu11 = mState->mu11 * s2, in cvGetHuMoments()
532 nu02 = mState->mu02 * s2, in cvGetHuMoments()
533 nu30 = mState->mu30 * s3, in cvGetHuMoments()
534 nu21 = mState->mu21 * s3, nu12 = mState->mu12 * s3, nu03 = mState->mu03 * s3; in cvGetHuMoments()