HomeSort by relevance Sort by last modified time
    Searched refs:clip_box (Results 1 - 16 of 16) sorted by null

  /external/pdfium/core/src/fxge/agg/agg23/
agg_clip_liang_barsky.h 26 inline unsigned clipping_flags(T x, T y, const rect_base<T>& clip_box)
28 return (x > clip_box.x2) |
29 ((y > clip_box.y2) << 1) |
30 ((x < clip_box.x1) << 2) |
31 ((y < clip_box.y1) << 3);
35 const rect_base<T>& clip_box,
43 deltax = (x1 > clip_box.x1) ? -nearzero : nearzero;
47 xin = (FX_FLOAT)clip_box.x1;
48 xout = (FX_FLOAT)clip_box.x2;
50 xin = (FX_FLOAT)clip_box.x2
    [all...]
agg_renderer_base.h 64 const rect& clip_box() const function in class:agg::renderer_base
agg_rasterizer_scanline_aa.h 219 void clip_box(FX_FLOAT x1, FX_FLOAT y1, FX_FLOAT x2, FX_FLOAT y2) function in class:agg::rasterizer_scanline_aa
fx_agg_driver.cpp 346 rasterizer.clip_box(0.0f, 0.0f, (FX_FLOAT)(GetDeviceCaps(FXDC_PIXEL_WIDTH)), (FX_FLOAT)(GetDeviceCaps(FXDC_PIXEL_HEIGHT)));
366 rasterizer.clip_box(0.0f, 0.0f, (FX_FLOAT)(GetDeviceCaps(FXDC_PIXEL_WIDTH)), (FX_FLOAT)(GetDeviceCaps(FXDC_PIXEL_HEIGHT)));
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_pattern.cpp 843 FX_RECT clip_box = m_pDevice->GetClipBox(); local
907 FX_RECT clip_box = m_pDevice->GetClipBox(); local
    [all...]
fpdf_render_image.cpp 751 FX_RECT clip_box = m_pRenderStatus->m_pDevice->GetClipBox(); local
752 clip_box.Intersect(image_rect);
755 m_pTransformer->Start(m_pDIBSource, &m_ImageMatrix, m_Flags, &clip_box);
785 FX_RECT clip_box = m_pRenderStatus->m_pDevice->GetClipBox(); local
    [all...]
  /external/pdfium/core/src/fxge/ge/
fx_ge_device.cpp 370 FX_RECT clip_box = m_ClipBox; local
371 clip_box.Intersect(dest_rect);
372 if (clip_box.IsEmpty()) {
375 return m_pDeviceDriver->StretchDIBits(pBitmap, 0, left, top, dest_width, dest_height, &clip_box, flags, 0, pIccTransform, blend_mode);
388 FX_RECT clip_box = m_ClipBox; local
389 clip_box.Intersect(dest_rect);
390 return m_pDeviceDriver->StretchDIBits(pBitmap, argb, left, top, dest_width, dest_height, &clip_box, flags, alpha_flag, pIccTransform);
  /external/chromium_org/third_party/freetype/src/smooth/
ftgrays.c 386 FT_BBox clip_box; member in struct:gray_TWorker_
    [all...]
  /external/freetype/src/smooth/
ftgrays.c 431 FT_BBox clip_box; member in struct:gray_TWorker_
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/smooth/
ftgrays.c 394 FT_BBox clip_box; member in struct:gray_TWorker_
    [all...]
  /external/chromium_org/third_party/freetype/include/freetype/
ftimage.h 1123 FT_BBox clip_box; member in struct:FT_Raster_Params_
    [all...]
  /external/freetype/include/
ftimage.h 1123 FT_BBox clip_box; member in struct:FT_Raster_Params_
    [all...]
  /external/pdfium/core/include/thirdparties/freetype/freetype/
ftimage.h 1123 FT_BBox clip_box; member in struct:FT_Raster_Params_
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
ftimage.h 1123 FT_BBox clip_box; member in struct:FT_Raster_Params_
    [all...]
  /external/chromium_org/pdf/pdfium/
pdfium_engine.cc 376 // |clip_box| out param to hold the computed source clip box values.
378 ClipBox* clip_box) {
379 if (!FPDFPage_GetCropBox(page, &clip_box->left, &clip_box->bottom,
380 &clip_box->right, &clip_box->top)) {
381 if (!FPDFPage_GetMediaBox(page, &clip_box->left, &clip_box->bottom,
382 &clip_box->right, &clip_box->top))
    [all...]
  /external/pdfium/core/src/fxge/dib/
fx_dib_composite.cpp 4139 FX_RECT clip_box; local
4200 FX_RECT clip_box; local
    [all...]

Completed in 527 milliseconds