Searched defs:dstW (Results 1 - 9 of 9) sorted by relevance

/external/deqp/modules/gles2/accuracy/
H A Des2aVaryingInterpolationTests.cpp66 float dstW = (float)dst.getWidth(); local
80 float nx = wx / dstW;
/external/deqp/modules/gles3/accuracy/
H A Des3aVaryingInterpolationTests.cpp68 float dstW = (float)dst.getWidth(); local
82 float nx = wx / dstW;
/external/mesa3d/src/mesa/drivers/common/
H A Dmeta_blit.c616 const GLint dstW = abs(dstX1 - dstX0); local
699 scaled_blit = dstW != srcW || dstH != srcH;
808 _mesa_set_viewport(ctx, 0, dstX, dstY, dstW, dstH);
957 const GLint dstW = abs(dstX1 - dstX0); local
959 const GLint dstFlipX = (dstX1 - dstX0) / dstW;
/external/skia/src/core/
H A DSkScalerContext.cpp343 int dstW = srcW; local
360 dstW = 4*dstW - 8;
371 clip.setRect(SkIRect::MakeWH(dstW, dstH));
373 const SkImageInfo info = SkImageInfo::MakeA8(dstW, dstH);
/external/skqp/src/core/
H A DSkScalerContext.cpp349 int dstW = srcW; local
366 dstW = 4*dstW - 8;
377 clip.setRect(SkIRect::MakeWH(dstW, dstH));
379 const SkImageInfo info = SkImageInfo::MakeA8(dstW, dstH);
/external/mesa3d/src/gallium/state_trackers/xa/
H A Dxa_renderer.c307 float dstW, float dstH, struct xa_surface *srf[])
327 add_vertex_1tex(r, dstX + dstW, dstY, s1, t0);
329 add_vertex_1tex(r, dstX + dstW, dstY + dstH, s1, t1);
300 setup_vertex_data_yuv(struct xa_context *r, float srcX, float srcY, float srcW, float srcH, float dstX, float dstY, float dstW, float dstH, struct xa_surface *srf[]) argument
/external/deqp/framework/opengl/
H A DgluTextureTestUtil.cpp471 float dstW = (float)dst.getWidth(); local
486 float nx = wx / dstW;
490 float triWx = triNdx ? dstW - wx : wx;
511 float dstW = (float)dst.getWidth(); local
529 float nx = wx / dstW;
533 float triWx = triNdx ? dstW - wx : wx;
617 const float dstW = float(dstSize.x()); local
635 const float nx = wx / dstW;
645 const tcu::Vec3 coordDx (triDerivateX(triS[triNdx], triW[triNdx], wx, dstW, triNy),
646 triDerivateX(triT[triNdx], triW[triNdx], wx, dstW, triN
810 float dstW = (float)dst.getWidth(); local
870 const float dstW = (float)dst.getWidth(); local
1244 const float dstW = float(dstSize.x()); local
1348 const float dstW = float(dstSize.x()); local
1548 const float dstW = float(dstSize.x()); local
1728 const float dstW = float(dstSize.x()); local
1898 const float dstW = float(dstSize.x()); local
2006 const float dstW = float(dstSize.x()); local
2194 const float dstW = float(dstSize.x()); local
2374 const float dstW = float(dstSize.x()); local
2487 const float dstW = float(dstSize.x()); local
2609 const float dstW = float(dstSize.x()); local
2712 const float dstW = float(dst.getWidth()); local
2748 const float dstW = float(dst.getWidth()); local
2785 const float dstW = float(dst.getWidth()); local
[all...]
/external/swiftshader/src/Renderer/
H A DETC_Decoder.cpp677 bool ETC_Decoder::Decode(const unsigned char* src, unsigned char *dst, int w, int h, int dstW, int dstH, int dstPitch, int dstBpp, InputType inputType) argument
693 ETC2::DecodeBlock(sources, dstRow + (x * dstBpp), 1, x, y, dstW, dstH, dstPitch, inputType == ETC_R_SIGNED, true);
705 ETC2::DecodeBlock(sources, dstRow + (x * dstBpp), 2, x, y, dstW, dstH, dstPitch, inputType == ETC_RG_SIGNED, true);
716 sources[0]->decodeBlock(dstRow + (x * dstBpp), x, y, dstW, dstH, dstPitch, alphaValues, inputType == ETC_RGB_PUNCHTHROUGH_ALPHA);
727 ETC2::DecodeBlock(&sources[0], &(alphaValues[0][0]), 1, x, y, dstW, dstH, 4, false, false);
731 sources[0]->decodeBlock(dstRow + (x * dstBpp), x, y, dstW, dstH, dstPitch, alphaValues, false);
H A DSurface.cpp3671 int dstW = dst->getWidth(); local
3674 ASSERT(srcW == srcH && dstW == dstH && srcW == dstW && srcBytes == dstBytes);
3682 int dstStart = ((dstEdge == BOTTOM) ? dstPitch * (dstH + 1) : ((dstEdge == RIGHT) ? dstBytes * (dstW + 1) : 0)) + (reverse ? dstW * -dstDelta : dstDelta);
3695 int x0 = (dstEdge == RIGHT) ? dstW : -1;
3697 int x1 = (dstEdge == RIGHT) ? dstW - 1 : 0;

Completed in 1364 milliseconds