Searched refs:clip (Results 101 - 125 of 575) sorted by relevance

1234567891011>>

/external/skia/src/core/
H A DSkBlitter_A8.cpp123 void SkA8_Blitter::blitMask(const SkMask& mask, const SkIRect& clip) { argument
130 SkA8_BlitBW(fDevice, mask, clip);
132 SkA8_BlendBW(fDevice, mask, clip, fSrcA,
138 int x = clip.fLeft;
139 int y = clip.fTop;
140 int width = clip.width();
141 int height = clip.height();
322 void SkA8_Shader_Blitter::blitMask(const SkMask& mask, const SkIRect& clip) { argument
324 this->INHERITED::blitMask(mask, clip);
328 int x = clip
412 blitMask(const SkMask& mask, const SkIRect& clip) argument
[all...]
H A DSkBlitMask.h22 const SkIRect& clip, SkColor color);
H A DSkSpriteBlitter.h34 virtual void blitMask(const SkMask&, const SkIRect& clip);
/external/chromium_org/third_party/angle/src/libGLESv2/
H A Dangletypes.cpp55 bool ClipRectangle(const Rectangle &source, const Rectangle &clip, Rectangle *intersection) argument
62 MinMax(clip.x, clip.x + clip.width, &minClipX, &maxClipX);
63 MinMax(clip.y, clip.y + clip.height, &minClipY, &maxClipY);
/external/pixman/test/
H A Dcomposite-traps-test.c53 pixman_region16_t clip; local
130 printf ("source clip box: [%d,%d-%d,%d]\n",
136 pixman_region_init_rects (&clip, clip_boxes, n);
137 pixman_image_set_clip_region (src_img, &clip);
139 pixman_region_fini (&clip);
204 printf ("destination clip box: [%d,%d-%d,%d]\n",
209 pixman_region_init_rects (&clip, clip_boxes, n);
210 pixman_image_set_clip_region (dst_img, &clip);
211 pixman_region_fini (&clip);
/external/chromium_org/ppapi/cpp/
H A Dgraphics_2d.cc102 void Graphics2D::Scroll(const Rect& clip, const Point& amount) { argument
105 &clip.pp_rect(),
109 &clip.pp_rect(),
H A Dgraphics_2d.h160 /// @param[in] clip The clipping rectangle.
163 void Scroll(const Rect& clip, const Point& amount);
/external/chromium_org/ppapi/shared_impl/
H A Dppb_view_shared.cc73 PP_Bool PPB_View_Shared::GetClipRect(PP_Rect* clip) const {
74 if (!clip)
76 *clip = data_.clip_rect;
/external/chromium_org/third_party/fuzzymatch/
H A Dfuzzymatch.c126 BOX *clip = boxCreate(0, 0, clipwidth, clipheight); local
128 deltabinaryclipped = pixClipRectangle(deltabinary, clip, NULL);
129 boxDestroy(&clip);
/external/chromium_org/third_party/skia/tests/
H A DAAClipTest.cpp182 SkAAClip clip; local
188 clip.setPath(path, NULL, true);
189 REPORTER_ASSERT(reporter, height == clip.getBounds().height());
202 clip.setPath(path, NULL, true);
203 REPORTER_ASSERT(reporter, teardrop_height == clip.getBounds().height());
310 SkAAClip clip; local
311 clip.setPath(path, NULL, 1 == i);
314 clip.copyToMask(&mask);
328 SkAAClip clip; local
329 clip
414 SkAAClip clip; local
[all...]
/external/chromium_org/cc/blink/
H A Dweb_content_layer_impl.h40 const gfx::Rect& clip,
/external/chromium_org/cc/output/
H A Doutput_surface_client.h44 const gfx::Rect& clip,
/external/chromium_org/ppapi/c/
H A Dppp_instance.h188 const struct PP_Rect* clip);
/external/chromium_org/ppapi/proxy/
H A Dserialized_structs.cc129 clip.point.x = 0;
130 clip.point.y = 0;
131 clip.size.height = 0;
132 clip.size.width = 0;
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DBackgroundImageGeometry.cpp29 void BackgroundImageGeometry::clip(const IntRect& clipRect) function in class:blink::BackgroundImageGeometry
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebFontImpl.h54 const WebRect& clip, bool canvasIsOpaque, int from = 0, int to = -1) const OVERRIDE;
/external/chromium_org/third_party/WebKit/public/web/
H A DWebFont.h64 // The text will be clipped to the given clip rect. |canvasIsOpaque| is
72 const WebRect& clip, bool canvasIsOpaque,
/external/chromium_org/third_party/skia/src/core/
H A DSkBlitMask.h22 const SkIRect& clip, SkColor color);
H A DSkSpriteBlitter.h34 virtual void blitMask(const SkMask&, const SkIRect& clip);
/external/chromium_org/third_party/skia/src/svg/
H A DSkSVGPolyline.cpp20 SVG_LITERAL_ATTRIBUTE(clip-rule, f_clipRule),
/external/chromium_org/ui/gfx/
H A Dblit.h44 // The canvas should not have a clip or a transform applied, since platforms
47 const Rect& clip,
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-jmf.jar ... sampled.Clip, int) javax.sound.sampled.Clip clip int loops private void playClip (javax.sound. ...
/external/skia/src/svg/
H A DSkSVGPolyline.cpp20 SVG_LITERAL_ATTRIBUTE(clip-rule, f_clipRule),
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_rasterpos.c42 * \param v vertex vector describing the point to clip.
62 * \param v vertex vector describing the point to clip.
82 * \param v vertex vector describing the point to clip.
362 * XXX some of this code (such as viewport xform, clip testing and setting
377 GLfloat eye[4], clip[4], ndc[3], d; local
383 /* apply projection matrix: clip = Proj * eye */
384 TRANSFORM_POINT( clip, ctx->ProjectionMatrixStack.Top->m, eye );
386 /* clip to view volume. */
388 if (viewclip_point_z(clip) == 0) {
394 if (viewclip_point_xy(clip)
[all...]
/external/mesa3d/src/mesa/tnl/
H A Dt_rasterpos.c42 * \param v vertex vector describing the point to clip.
62 * \param v vertex vector describing the point to clip.
82 * \param v vertex vector describing the point to clip.
362 * XXX some of this code (such as viewport xform, clip testing and setting
377 GLfloat eye[4], clip[4], ndc[3], d; local
383 /* apply projection matrix: clip = Proj * eye */
384 TRANSFORM_POINT( clip, ctx->ProjectionMatrixStack.Top->m, eye );
386 /* clip to view volume. */
388 if (viewclip_point_z(clip) == 0) {
394 if (viewclip_point_xy(clip)
[all...]

Completed in 911 milliseconds

1234567891011>>