HomeSort by relevance Sort by last modified time
    Searched defs:xFactor (Results 1 - 3 of 3) sorted by null

  /external/deqp/framework/delibs/deimage/
deImage.c 132 int xFactor = (xFixed & 0xFF);
134 int f00 = ((256-xFactor) * (256-yFactor)) >> 8;
135 int f10 = ((256-xFactor) * yFactor) >> 8;
136 int f01 = (xFactor * (256-yFactor)) >> 8;
137 int f11 = (xFactor * yFactor) >> 8;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
CountersGraph.js 357 var xFactor = width / (this._maxTime - this._minTime);
361 this.x[i] = xFactor * (this.times[i] - this._minTime);
  /external/deqp/modules/gles31/functional/
es31fTextureGatherTests.cpp 478 static inline T triQuadInterpolate (const T (&values)[4], float xFactor, float yFactor)
480 if (xFactor + yFactor < 1.0f)
481 return values[0] + (values[2]-values[0])*xFactor + (values[1]-values[0])*yFactor;
483 return values[3] + (values[1]-values[3])*(1.0f-xFactor) + (values[2]-values[3])*(1.0f-yFactor);
    [all...]

Completed in 108 milliseconds