Home
last modified time | relevance | path

Searched refs:srcW (Results 1 – 17 of 17) sorted by relevance

/external/skqp/src/core/
DSkMaskBlurFilter.cpp550 const uint8_t* src, int srcW, in blur_row() argument
557 for (; x <= srcW - 8; x += 8) { in blur_row()
570 int srcTail = srcW - x; in blur_row()
593 const uint8_t* src, size_t srcStride, int srcW, in blur_x_rect() argument
604 blur_row(blur, g0, g1, g2, g3, g4, src, srcW, dst, dstW); in blur_x_rect()
611 const uint8_t* src, size_t srcStride, int srcW, in direct_blur_x() argument
616 blur_x_rect(blur_x_radius_1, gauss, src, srcStride, srcW, dst, dstStride, dstW, dstH); in direct_blur_x()
620 blur_x_rect(blur_x_radius_2, gauss, src, srcStride, srcW, dst, dstStride, dstW, dstH); in direct_blur_x()
624 blur_x_rect(blur_x_radius_3, gauss, src, srcStride, srcW, dst, dstStride, dstW, dstH); in direct_blur_x()
628 blur_x_rect(blur_x_radius_4, gauss, src, srcStride, srcW, dst, dstStride, dstW, dstH); in direct_blur_x()
[all …]
DSkScalerContext.cpp387 int srcW = mask.fBounds.width(); in generateMask() local
389 int dstW = srcW; in generateMask()
/external/skia/src/core/
DSkMaskBlurFilter.cpp550 const uint8_t* src, int srcW, in blur_row() argument
557 for (; x <= srcW - 8; x += 8) { in blur_row()
570 int srcTail = srcW - x; in blur_row()
593 const uint8_t* src, size_t srcStride, int srcW, in blur_x_rect() argument
604 blur_row(blur, g0, g1, g2, g3, g4, src, srcW, dst, dstW); in blur_x_rect()
611 const uint8_t* src, size_t srcStride, int srcW, in direct_blur_x() argument
616 blur_x_rect(blur_x_radius_1, gauss, src, srcStride, srcW, dst, dstStride, dstW, dstH); in direct_blur_x()
620 blur_x_rect(blur_x_radius_2, gauss, src, srcStride, srcW, dst, dstStride, dstW, dstH); in direct_blur_x()
624 blur_x_rect(blur_x_radius_3, gauss, src, srcStride, srcW, dst, dstStride, dstW, dstH); in direct_blur_x()
628 blur_x_rect(blur_x_radius_4, gauss, src, srcStride, srcW, dst, dstStride, dstW, dstH); in direct_blur_x()
[all …]
DSkScalerContext.cpp419 int srcW = mask.fBounds.width(); in generateMask() local
421 int dstW = srcW; in generateMask()
/external/skqp/src/effects/imagefilters/
DSkBlurImageFilter.cpp409 auto srcW = srcBounds.width(), in copy_image_with_bounds() local
436 srcW * sizeof(uint32_t)); in copy_image_with_bounds()
438 dstPtr += srcW; in copy_image_with_bounds()
439 x += srcW; in copy_image_with_bounds()
484 auto srcW = srcBounds.width(), in cpu_blur() local
514 auto intermediateWidth = srcW; in cpu_blur()
DSkDisplacementMapEffect.cpp64 const int srcW = src.width(); in computeDisplacement() local
80 *dstPtr++ = ((srcX < 0) || (srcX >= srcW) || (srcY < 0) || (srcY >= srcH)) ? in computeDisplacement()
/external/skia/src/effects/imagefilters/
DSkBlurImageFilter.cpp409 auto srcW = srcBounds.width(), in copy_image_with_bounds() local
436 srcW * sizeof(uint32_t)); in copy_image_with_bounds()
438 dstPtr += srcW; in copy_image_with_bounds()
439 x += srcW; in copy_image_with_bounds()
484 auto srcW = srcBounds.width(), in cpu_blur() local
514 auto intermediateWidth = srcW; in cpu_blur()
DSkDisplacementMapEffect.cpp66 const int srcW = src.width(); in computeDisplacement() local
82 *dstPtr++ = ((srcX < 0) || (srcX >= srcW) || (srcY < 0) || (srcY >= srcH)) ? in computeDisplacement()
/external/mesa3d/src/mesa/drivers/common/
Dmeta_blit.c618 const int srcW = abs(srcX1 - srcX0); in blitframebuffer_texture() local
684 srcW, srcH, in blitframebuffer_texture()
692 srcX1 = srcW; in blitframebuffer_texture()
702 scaled_blit = dstW != srcW || dstH != srcH; in blitframebuffer_texture()
/external/mesa3d/src/gallium/auxiliary/util/
Du_blit.c379 const int srcW = abs(srcX1 - srcX0); in util_blit_pixels() local
445 src_box.width = srcW; in util_blit_pixels()
/external/mesa3d/src/gallium/state_trackers/xa/
Dxa_renderer.c303 float srcW, in setup_vertex_data_yuv() argument
315 spt1[0] = srcX + srcW; in setup_vertex_data_yuv()
/external/deqp/framework/opengl/
DgluTextureTestUtil.cpp2714 const float srcW = float(src.getWidth()); in compareGenMipmapBilinear() local
2732 const float cx = (float(x)+0.5f) / dstW * srcW; in compareGenMipmapBilinear()
2750 const float srcW = float(src.getWidth()); in compareGenMipmapBox() local
2768 const float cx = deFloatFloor(float(x) / dstW * srcW) + 1.0f; in compareGenMipmapBox()
2787 const float srcW = float(src.getWidth()); in compareGenMipmapVeryLenient() local
2795 const int minX = deFloorFloatToInt32(((float)x-0.5f) / dstW * srcW); in compareGenMipmapVeryLenient()
2797 const int maxX = deCeilFloatToInt32(((float)x+1.5f) / dstW * srcW); in compareGenMipmapVeryLenient()
/external/swiftshader/src/Device/
DSurface.cpp3046 int srcW = src->getWidth(); in copyCubeEdge() local
3051 ASSERT(srcW == srcH && dstW == dstH && srcW == dstW && srcBytes == dstBytes); in copyCubeEdge()
3055 …= ((srcEdge == BOTTOM) ? srcPitch * (srcH - 1) : ((srcEdge == RIGHT) ? srcBytes * (srcW - 1) : 0)); in copyCubeEdge()
3064 for(int i = 0; i < srcW; ++i, dstBuf += dstDelta, srcBuf += srcDelta) in copyCubeEdge()
/external/skqp/dm/
DDMSrcSink.cpp1806 static SkISize auto_compute_translate(SkMatrix* matrix, int srcW, int srcH) { in auto_compute_translate() argument
1807 SkRect bounds = SkRect::MakeIWH(srcW, srcH); in auto_compute_translate()
/external/skia/dm/
DDMSrcSink.cpp1738 static SkISize auto_compute_translate(SkMatrix* matrix, int srcW, int srcH) { in auto_compute_translate() argument
1739 SkRect bounds = SkRect::MakeIWH(srcW, srcH); in auto_compute_translate()
/external/swiftshader/src/Renderer/
DSurface.cpp3645 int srcW = src->getWidth(); in copyCubeEdge() local
3650 ASSERT(srcW == srcH && dstW == dstH && srcW == dstW && srcBytes == dstBytes); in copyCubeEdge()
3654 …= ((srcEdge == BOTTOM) ? srcPitch * (srcH - 1) : ((srcEdge == RIGHT) ? srcBytes * (srcW - 1) : 0)); in copyCubeEdge()
3663 for(int i = 0; i < srcW; ++i, dstBuf += dstDelta, srcBuf += srcDelta) in copyCubeEdge()
/external/deqp/framework/opengl/simplereference/
DsglrReferenceContext.cpp3117 int srcW = de::abs(srcX1-srcX0); in blitFramebuffer() local
3121 bool scale = srcW != dstW || srcH != dstH; in blitFramebuffer()
3126 IVec4 srcRect = IVec4(srcOriginX, srcOriginY, srcW, srcH); in blitFramebuffer()
3143 RC_IF_ERROR(srcW != dstW || srcH != dstH, GL_INVALID_OPERATION, RC_RET_VOID); in blitFramebuffer()