Home
last modified time | relevance | path

Searched refs:dash_pattern (Results 1 – 11 of 11) sorted by relevance

/external/ImageMagick/MagickWand/
Ddrawing-wand.c1952 p=CurrentContext->dash_pattern; in DrawGetStrokeDashArray()
1962 p=CurrentContext->dash_pattern; in DrawGetStrokeDashArray()
2588 (CurrentContext->dash_pattern != (double *) NULL)) in DrawGetVectorGraphics()
2591 *dash_pattern; in DrawGetVectorGraphics() local
2593 dash_pattern=AcquireString((char *) NULL); in DrawGetVectorGraphics()
2594 for (i=0; fabs(CurrentContext->dash_pattern[i]) >= MagickEpsilon; i++) in DrawGetVectorGraphics()
2597 (void) ConcatenateString(&dash_pattern,","); in DrawGetVectorGraphics()
2599 CurrentContext->dash_pattern[i]); in DrawGetVectorGraphics()
2600 (void) ConcatenateString(&dash_pattern,value); in DrawGetVectorGraphics()
2602 (void) SetXMLTreeContent(child,dash_pattern); in DrawGetVectorGraphics()
[all …]
/external/mesa3d/src/gallium/state_trackers/vega/
Dstroker.c1116 static INLINE VGfloat dash_pattern(struct dash_stroker *stroker, in dash_pattern() function
1119 if (stroker->dash_pattern[idx] < 0) in dash_pattern()
1121 return stroker->dash_pattern[idx]; in dash_pattern()
1153 sum_length += dash_pattern(stroker, i); in dash_stroker_process_subpath()
1162 while (!floatIsZero(doffset) && doffset >= dash_pattern(stroker, idash)) { in dash_stroker_process_subpath()
1163 doffset -= dash_pattern(stroker, idash); in dash_stroker_process_subpath()
1192 VGfloat dpos = pos + dash_pattern(stroker, idash) - doffset - estart; in dash_stroker_process_subpath()
1197 doffset = dash_pattern(stroker, idash) - (dpos - elen); in dash_stroker_process_subpath()
1312 stroker->dash_pattern[i] = state->stroke.dash_pattern[i].f; in dash_stroker_init()
Dvg_state.h64 struct vg_value dash_pattern[VEGA_MAX_DASH_COUNT]; member
Dstroker.h62 VGfloat dash_pattern[VEGA_MAX_DASH_COUNT]; member
Dapi_params.c327 state->stroke.dash_pattern[i].f = values[i]; in vegaSetfv()
328 state->stroke.dash_pattern[i].i = in vegaSetfv()
453 state->stroke.dash_pattern[i].f = values[i]; in vegaSetiv()
454 state->stroke.dash_pattern[i].i = values[i]; in vegaSetiv()
834 values[i] = state->stroke.dash_pattern[i].f; in vegaGetfv()
940 values[i] = state->stroke.dash_pattern[i].i; in vegaGetiv()
/external/ImageMagick/Magick++/lib/
DOptions.cpp578 _drawInfo->dash_pattern=(double *) RelinquishMagickMemory( in strokeDashArray()
579 _drawInfo->dash_pattern); in strokeDashArray()
588 _drawInfo->dash_pattern=static_cast<double*>(AcquireMagickMemory((x+1)* in strokeDashArray()
591 memcpy(_drawInfo->dash_pattern,strokeDashArray_,(x+1)*sizeof(double)); in strokeDashArray()
592 _drawInfo->dash_pattern[x]=0.0; in strokeDashArray()
598 return(_drawInfo->dash_pattern); in strokeDashArray()
/external/ImageMagick/MagickCore/
Ddraw.c309 if (draw_info->dash_pattern != (double *) NULL) in CloneDrawInfo()
314 for (x=0; fabs(draw_info->dash_pattern[x]) >= DrawEpsilon; x++) ; in CloneDrawInfo()
315 clone_info->dash_pattern=(double *) AcquireQuantumMemory((size_t) x+1UL, in CloneDrawInfo()
316 sizeof(*clone_info->dash_pattern)); in CloneDrawInfo()
317 if (clone_info->dash_pattern == (double *) NULL) in CloneDrawInfo()
320 (void) CopyMagickMemory(clone_info->dash_pattern,draw_info->dash_pattern, in CloneDrawInfo()
321 (size_t) (x+1)*sizeof(*clone_info->dash_pattern)); in CloneDrawInfo()
854 if (draw_info->dash_pattern != (double *) NULL) in DestroyDrawInfo()
855 draw_info->dash_pattern=(double *) RelinquishMagickMemory( in DestroyDrawInfo()
856 draw_info->dash_pattern); in DestroyDrawInfo()
[all …]
Ddraw.h290 *dash_pattern; member
Dannotate.c1483 if (annotate_info->dash_pattern != (double *) NULL) in RenderFreetype()
1484 annotate_info->dash_pattern[0]=0.0; in RenderFreetype()
/external/ImageMagick/PerlMagick/
DMagick.xs9013 draw_info->dash_pattern=(double *) AcquireQuantumMemory( in Mogrify()
9014 av_len(av)+2UL,sizeof(*draw_info->dash_pattern)); in Mogrify()
9015 if (draw_info->dash_pattern != (double *) NULL) in Mogrify()
9018 draw_info->dash_pattern[i]=(double) in Mogrify()
9020 draw_info->dash_pattern[i]=0.0; in Mogrify()
/external/ImageMagick/PerlMagick/quantum/
Dquantum.xs.in9013 draw_info->dash_pattern=(double *) AcquireQuantumMemory(
9014 av_len(av)+2UL,sizeof(*draw_info->dash_pattern));
9015 if (draw_info->dash_pattern != (double *) NULL)
9018 draw_info->dash_pattern[i]=(double)
9020 draw_info->dash_pattern[i]=0.0;