Lines Matching refs:dudx
216 float computeLodFromDerivates (LodMode mode, float dudx, float dudy) in computeLodFromDerivates() argument
225 p = de::max(deFloatAbs(dudx), deFloatAbs(dudy)); in computeLodFromDerivates()
247 float computeLodFromDerivates (LodMode mode, float dudx, float dvdx, float dudy, float dvdy) in computeLodFromDerivates() argument
253 p = de::max(deFloatSqrt(dudx*dudx + dvdx*dvdx), deFloatSqrt(dudy*dudy + dvdy*dvdy)); in computeLodFromDerivates()
259 float mu = de::max(deFloatAbs(dudx), deFloatAbs(dudy)); in computeLodFromDerivates()
287 float computeLodFromDerivates (LodMode mode, float dudx, float dvdx, float dwdx, float dudy, float … in computeLodFromDerivates() argument
293 …p = de::max(deFloatSqrt(dudx*dudx + dvdx*dvdx + dwdx*dwdx), deFloatSqrt(dudy*dudy + dvdy*dvdy + dw… in computeLodFromDerivates()
299 float mu = de::max(deFloatAbs(dudx), deFloatAbs(dudy)); in computeLodFromDerivates()
349 float dudx = triDerivateX(u, projection, wx, width, wy/height); in computeProjectedTriLod() local
352 return computeLodFromDerivates(mode, dudx, dudy); in computeProjectedTriLod()
359 float dudx = triDerivateX(u, projection, wx, width, wy/height); in computeProjectedTriLod() local
364 return computeLodFromDerivates(mode, dudx, dvdx, dudy, dvdy); in computeProjectedTriLod()
371 float dudx = triDerivateX(u, projection, wx, width, wy/height); in computeProjectedTriLod() local
378 return computeLodFromDerivates(mode, dudx, dvdx, dwdx, dudy, dvdy, dwdy); in computeProjectedTriLod()
638 const float dudx = float(faceSize) * 0.5f * (scdx*ma - sc*madx) / (ma*ma); in computeCubeLodFromDerivates() local
643 return computeLodFromDerivates(lodMode, dudx, dvdx, dudy, dvdy); in computeCubeLodFromDerivates()