HomeSort by relevance Sort by last modified time
    Searched full:dstpt (Results 1 - 11 of 11) sorted by null

  /external/skia/src/gpu/
SkGrPixelRef.cpp 54 SkColorProfileType dstPT, const SkIRect* subset) {
78 desc.fConfig = SkImageInfo2GrPixelConfig(dstCT, kPremul_SkAlphaType, dstPT);
93 dstPT);
134 SkPixelRef* SkGrPixelRef::deepCopy(SkColorType dstCT, SkColorProfileType dstPT,
146 return copy_to_new_texture_pixelref(fSurface->asTexture(), dstCT, dstPT, subset);
  /external/skia/src/pathops/
SkPathOpsConic.h 54 void align(int endIndex, SkDPoint* dstPt) const {
55 fPts.align(endIndex, dstPt);
SkPathOpsQuad.h 61 void align(int endIndex, SkDPoint* dstPt) const;
SkPathOpsQuad.cpp 245 void SkDQuad::align(int endIndex, SkDPoint* dstPt) const {
247 dstPt->fX = fPts[endIndex].fX;
250 dstPt->fY = fPts[endIndex].fY;
SkPathOpsCubic.h 49 void align(int endIndex, int ctrlIndex, SkDPoint* dstPt) const;
SkPathOpsCubic.cpp 19 void SkDCubic::align(int endIndex, int ctrlIndex, SkDPoint* dstPt) const {
21 dstPt->fX = fPts[endIndex].fX;
24 dstPt->fY = fPts[endIndex].fY;
  /external/opencv3/modules/java/src/
imgproc+Subdiv2D.java 204 // C++: int edgeDst(int edge, Point2f* dstpt = 0)
207 //javadoc: Subdiv2D::edgeDst(edge, dstpt)
208 public int edgeDst(int edge, Point dstpt)
212 if(dstpt!=null){ dstpt.x = dstpt_out[0]; dstpt.y = dstpt_out[1]; }
360 // C++: int edgeDst(int edge, Point2f* dstpt = 0)
imgproc.cpp 504 // int edgeDst(int edge, Point2f* dstpt = 0)
516 Point2f dstpt; local
517 int _retval_ = me->edgeDst( (int)edge, &dstpt );
518 jdouble tmp_dstpt[2] = {dstpt.x, dstpt.y}; env->SetDoubleArrayRegion(dstpt_out, 0, 2, tmp_dstpt);
    [all...]
  /external/opencv3/modules/imgproc/src/
subdivision2d.cpp 81 int Subdiv2D::edgeDst(int edge, CV_OUT Point2f* dstpt) const
85 if( dstpt )
88 *dstpt = vtx[vidx].pt;
179 void Subdiv2D::setEdgePoints(int edge, int orgPt, int dstPt)
182 qedges[edge >> 2].pt[(edge + 2) & 3] = dstPt;
184 vtx[dstPt].firstEdge = edge ^ 2;
  /external/skia/src/core/
SkBitmap.cpp 918 const SkColorProfileType dstPT = this->profileType();
927 SkPixelRef* pixelRef = fPixelRef->deepCopy(dstCT, dstPT, nullptr);
930 if (this->colorType() == dstCT && this->profileType() == dstPT) {
    [all...]
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp     [all...]

Completed in 937 milliseconds