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

  /external/skia/src/effects/
SkTestImageFilters.cpp 32 int dstW = SkScalarRoundToInt(src.width() * scale);
34 if (dstW < 1) {
35 dstW = 1;
45 SkBaseDevice* dev = proxy->createDevice(dstW, dstH);
  /hardware/intel/img/hwcomposer/merrifield/ips/common/
PlaneCapabilities.cpp 177 int dstW, dstH;
181 dstW = dest.right - dest.left;
186 return ((srcW == dstW) && (srcH == dstH)) ? true : false;
194 if (dstW <= 1 || dstH <= 1 || srcW <= 1 || srcH <= 1) {
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/anniedale/
PlaneCapabilities.cpp 168 int dstW, dstH;
172 dstW = dest.right - dest.left;
177 return ((srcW == dstW) && (srcH == dstH)) ? true : false;
185 if (dstW <= 1 || dstH <= 1 || srcW <= 1 || srcH <= 1) {
187 DLOGTRACE("invalid destination size: %dx%d, fall back to GLES", dstW, dstH);
203 float scaleX = (float)srcW / dstW;
AnnRGBPlane.cpp 151 int dstX, dstY, dstW, dstH;
163 dstW = mPosition.w;
166 checkPosition(dstX, dstY, dstW, dstH);
231 mContext.ctx.sp_ctx.pos = ((mode->vdisplay - dstY - dstH) & 0xfff) << 16 | ((mode->hdisplay - dstX - dstW) & 0xfff);
239 ((dstH - 1) & 0xfff) << 16 | ((dstW - 1) & 0xfff);
  /hardware/intel/img/hwcomposer/merrifield/ips/anniedale/
AnnRGBPlane.cpp 92 int dstX, dstY, dstW, dstH;
104 dstW = mPosition.w;
107 checkPosition(dstX, dstY, dstW, dstH);
173 mContext.ctx.sp_ctx.pos = ((mode->vdisplay - dstY - dstH) & 0xfff) << 16 | ((mode->hdisplay - dstX - dstW) & 0xfff);
181 ((dstH - 1) & 0xfff) << 16 | ((dstW - 1) & 0xfff);
PlaneCapabilities.cpp 191 int dstW, dstH;
195 dstW = dest.right - dest.left;
200 return ((srcW == dstW) && (srcH == dstH)) ? true : false;
216 if (dstW <= 100 || dstH <= 1 || srcW <= 100 || srcH <= 1) {
218 DTRACE("invalid destination size: %dx%d, fall back to GLES", dstW, dstH);
234 float scaleX = (float)srcW / dstW;
241 if (trans == HAL_TRANSFORM_ROT_90 && (float)srcW / srcH != (float)dstW / dstH) {
  /hardware/intel/img/hwcomposer/merrifield/ips/tangier/
TngSpritePlane.cpp 41 int dstX, dstY, dstW, dstH;
52 dstW = mPosition.w;
55 checkPosition(dstX, dstY, dstW, dstH);
98 ((dstH - 1) & 0xfff) << 16 | ((dstW - 1) & 0xfff);
  /external/deqp/modules/gles2/accuracy/
es2aVaryingInterpolationTests.cpp 65 float dstW = (float)dst.getWidth();
79 float nx = wx / dstW;
  /external/deqp/modules/gles3/accuracy/
es3aVaryingInterpolationTests.cpp 68 float dstW = (float)dst.getWidth();
82 float nx = wx / dstW;
  /hardware/intel/img/hwcomposer/merrifield/common/base/
DisplayAnalyzer.cpp 297 int dstW = layer.displayFrame.right - layer.displayFrame.left;
300 if (abs(dstW - width) > 1 &&
302 dstW * dstH * 10 < width * height * 9) {
HwcLayerList.cpp 170 int dstW = dest.right - dest.left;
172 if (srcW != dstW || srcH != dstH) {
174 srcW, srcH, dstW, dstH);
    [all...]
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/base/
HwcLayerList.cpp 167 int dstW = dest.right - dest.left;
169 if (srcW != dstW || srcH != dstH) {
229 int dstW = dest.right - dest.left;
231 if (srcW != dstW || srcH != dstH) {
233 srcW, srcH, dstW, dstH);
  /external/skia/src/core/
SkScalerContext.cpp 378 int dstW = srcW;
395 dstW = 4*dstW - 8;
406 clip.setRect(SkIRect::MakeWH(dstW, dstH));
408 const SkImageInfo info = SkImageInfo::MakeA8(dstW, dstH);
  /external/deqp/modules/glshared/
glsTextureTestUtil.cpp 508 float dstW = (float)dst.getWidth();
523 float nx = wx / dstW;
527 float triWx = triNdx ? dstW - wx : wx;
548 float dstW = (float)dst.getWidth();
566 float nx = wx / dstW;
570 float triWx = triNdx ? dstW - wx : wx;
654 const float dstW = float(dstSize.x());
672 const float nx = wx / dstW;
682 const tcu::Vec3 coordDx (triDerivateX(triS[triNdx], triW[triNdx], wx, dstW, triNy),
683 triDerivateX(triT[triNdx], triW[triNdx], wx, dstW, triNy)
    [all...]
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
LwjglRenderer.java     [all...]

Completed in 472 milliseconds