/external/mesa3d/src/mesa/swrast/ |
D | s_span.c | 185 const GLfloat dwdx = span->attrStepX[VARYING_SLOT_POS][3]; in interpolate_active_attribs() local 206 w += dwdx; in interpolate_active_attribs() 528 const GLfloat dwdx = span->attrStepX[VARYING_SLOT_POS][3]; in interpolate_texcoords() local 529 GLfloat w = span->attrStart[VARYING_SLOT_POS][3] + span->leftClip * dwdx; in interpolate_texcoords() 543 w += dwdx; in interpolate_texcoords() 569 const GLfloat dwdx = span->attrStepX[VARYING_SLOT_POS][3]; in interpolate_texcoords() local 570 GLfloat w = span->attrStart[VARYING_SLOT_POS][3] + span->leftClip * dwdx; in interpolate_texcoords() 582 w += dwdx; in interpolate_texcoords()
|
/external/deqp/framework/common/ |
D | tcuTexLookupVerifier.hpp | 108 Vec2 computeLodBoundsFromDerivates (const float dudx, const float dvdx, const float dwdx, const f…
|
D | tcuTexLookupVerifier.cpp | 2120 Vec2 computeLodBoundsFromDerivates (const float dudx, const float dvdx, const float dwdx, const flo… in computeLodBoundsFromDerivates() argument 2124 const float mwx = deFloatAbs(dwdx); in computeLodBoundsFromDerivates()
|
/external/deqp/modules/gles3/functional/ |
D | es3fTextureUnitTests.cpp | 306 float dwdx = derivateParts[2].x() * (float)textureSize.z() * screenDerivate.x(); in calculateLodMax() local 311 const float mw = de::max(de::abs(dwdx), de::abs(dwdy)); in calculateLodMax() 322 float dwdx = derivateParts[2].x() * (float)textureSize.z() * screenDerivate.x(); in calculateLodMin() local 327 const float mw = de::max(de::abs(dwdx), de::abs(dwdy)); in calculateLodMin()
|
D | es3fVertexTextureTests.cpp | 1645 const float dwdx = (trans10.z() - trans00.z()) * (float)srcDepth / dstSize.x(); in calculateLod() local 1648 …return deFloatLog2(deFloatSqrt(de::max(dudx*dudx + dvdx*dvdx + dwdx*dwdx, dudy*dudy + dvdy*dvdy + … in calculateLod()
|
D | es3fShaderTextureFunctionTests.cpp | 724 …float dwdx = (m_lookupSpec.maxCoord[2]-m_lookupSpec.minCoord[2])*0.5f*proj*(float)m_textureSpec.de… in initTexture() local 726 …m_lookupParams.lod = computeLodFromDerivates(DEFAULT_LOD_MODE, dudx, 0.0f, dwdx, 0.0f, dvdy, dwdy); in initTexture()
|
/external/deqp/framework/opengl/ |
D | gluTextureTestUtil.hpp | 168 float computeLodFromDerivates (LodMode mode, float dudx, float dvdx, float dwdx, float dudy, flo…
|
D | gluTextureTestUtil.cpp | 250 float computeLodFromDerivates (LodMode mode, float dudx, float dvdx, float dwdx, float dudy, float … in computeLodFromDerivates() argument 256 …p = de::max(deFloatSqrt(dudx*dudx + dvdx*dvdx + dwdx*dwdx), deFloatSqrt(dudy*dudy + dvdy*dvdy + dw… in computeLodFromDerivates() 264 float mw = de::max(deFloatAbs(dwdx), deFloatAbs(dwdy)); in computeLodFromDerivates() 336 float dwdx = triDerivateX(w, projection, wx, width, wy/height); in computeProjectedTriLod() local 341 return computeLodFromDerivates(mode, dudx, dvdx, dwdx, dudy, dvdy, dwdy); in computeProjectedTriLod()
|
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/ |
D | vktShaderRenderTextureFunctionTests.cpp | 298 float computeLodFromDerivates (LodMode mode, float dudx, float dvdx, float dwdx, float dudy, float … in computeLodFromDerivates() argument 304 …p = de::max(deFloatSqrt(dudx*dudx + dvdx*dvdx + dwdx*dwdx), deFloatSqrt(dudy*dudy + dvdy*dvdy + dw… in computeLodFromDerivates() 312 float mw = de::max(deFloatAbs(dwdx), deFloatAbs(dwdy)); in computeLodFromDerivates() 816 …float dwdx = (m_lookupSpec.maxCoord[2]-m_lookupSpec.minCoord[2])*0.5f*proj*(float)m_textureSpec.de… in initTexture() local 818 lookupParams.lod = computeLodFromDerivates(DEFAULT_LOD_MODE, dudx, 0.0f, dwdx, 0.0f, dvdy, dwdy); in initTexture() 2133 …const float dwdx = (m_maxCoord[2]-m_minCoord[2])*0.5f*(float)m_textureSpec.depth / (float)viewport… in TextureQueryLodInstance() local 2136 …m_lodBounds[0] = computeLodFromDerivates(LODMODE_MIN_BOUND, dudx, 0.0f, dwdx, 0.0f, dvdy, dwdy)-l… in TextureQueryLodInstance() 2137 …m_lodBounds[1] = computeLodFromDerivates(LODMODE_MAX_BOUND, dudx, 0.0f, dwdx, 0.0f, dvdy, dwdy)+l… in TextureQueryLodInstance()
|