HomeSort by relevance Sort by last modified time
    Searched defs:xFactor (Results 1 - 6 of 6) 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/ImageMagick/MagickCore/
accelerate.c     [all...]
  /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...]
  /external/dng_sdk/source/
dng_read_image.cpp     [all...]
dng_image_writer.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderTextureGatherTests.cpp 523 static inline T triQuadInterpolate (const T (&values)[4], float xFactor, float yFactor)
525 if (xFactor + yFactor < 1.0f)
526 return values[0] + (values[2]-values[0])*xFactor + (values[1]-values[0])*yFactor;
528 return values[3] + (values[1]-values[3])*(1.0f-xFactor) + (values[2]-values[3])*(1.0f-yFactor);
    [all...]

Completed in 231 milliseconds