Home
last modified time | relevance | path

Searched refs:paint_type (Results 1 – 25 of 616) sorted by relevance

12345678910>>...25

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/modules/canvas/canvas2d/
H A Dbase_rendering_context_2d.h422 CanvasRenderingContext2DState::PaintType paint_type, in ShouldUseDropShadowPaintFilter() argument
424 return (paint_type == CanvasRenderingContext2DState::kFillPaintType || in ShouldUseDropShadowPaintFilter()
495 CanvasRenderingContext2DState::PaintType paint_type, in Draw() argument
508 ShouldUseDropShadowPaintFilter(paint_type, image_type))) { in Draw()
509 CompositedDraw(draw_func, GetPaintCanvas(), paint_type, image_type); in Draw()
514 GetState().GetFlags(paint_type, kDrawForegroundOnly, image_type); in Draw()
535 CanvasRenderingContext2DState::PaintType paint_type, in CompositedDraw() argument
541 ShouldUseDropShadowPaintFilter(paint_type, image_type))); in CompositedDraw()
549 *GetState().GetFlags(paint_type, kDrawShadowOnly, image_type); in CompositedDraw()
553 ShouldUseDropShadowPaintFilter(paint_type, image_type)) { in CompositedDraw()
[all …]
H A Dcanvas_rendering_context_2d_state.cc220 CanvasStyle* CanvasRenderingContext2DState::Style(PaintType paint_type) const { in Style()
221 switch (paint_type) { in Style()
611 PaintType paint_type, in GetFlags() argument
615 switch (paint_type) { in GetFlags()
670 bool CanvasRenderingContext2DState::HasPattern(PaintType paint_type) const { in HasPattern()
671 return Style(paint_type) && Style(paint_type)->GetCanvasPattern() && in HasPattern()
672 Style(paint_type)->GetCanvasPattern()->GetPattern(); in HasPattern()
677 PaintType paint_type) const { in PatternIsAccelerated()
678 DCHECK(HasPattern(paint_type)); in PatternIsAccelerated()
679 return Style(paint_type)->GetCanvasPattern()->GetPattern()->IsTextureBacked(); in PatternIsAccelerated()
/dports/graphics/gimp-app/gimp-2.10.30/app/paint/
H A Dgimp-paint.c48 GType paint_type,
114 GType paint_type, in gimp_paint_register() argument
123 g_return_if_fail (g_type_is_a (paint_type, GIMP_TYPE_PAINT_CORE)); in gimp_paint_register()
129 paint_type, in gimp_paint_register()
138 if (paint_type == GIMP_TYPE_PAINTBRUSH) in gimp_paint_register()
H A Dpaint-types.h66 GType paint_type,
/dports/graphics/gimp-app/gimp-2.10.30/app/core/
H A Dgimppaintinfo.c58 paint_info->paint_type = G_TYPE_NONE; in gimp_paint_info_init()
98 GType paint_type, in gimp_paint_info_new() argument
117 paint_info->paint_type = paint_type; in gimp_paint_info_new()
H A Dgimppaintinfo.h41 GType paint_type; member
58 GType paint_type,
/dports/deskutils/calibre/calibre-src-5.34.0/src/calibre/ebooks/pdf/render/
H A Dgraphics.py52 def __init__(self, cache_key, matrix, w=8, h=8, paint_type=2, compress=False): argument
54 self.paint_type = paint_type
64 d['PaintType'] = self.paint_type
238 paint_type = (2 if image.format() in {QImage.Format.Format_MonoLSB,
242 paint_type=paint_type)
249 paint_type=clone.paint_type)
387 if pat.paint_type == 2:
/dports/graphics/gimp-app/gimp-2.10.30/plug-ins/gfig/
H A Dgfig-style.c275 style->paint_type = value; in gfig_load_style()
363 g_string_append_printf (string, "PaintType: %d\n", style->paint_type); in gfig_save_style()
418 g_string_append_printf (string, "PaintType=%d ", style->paint_type); in gfig_style_save_as_attributes()
484 gboolean paint_type; in set_paint_type_callback() local
488 paint_type = gtk_toggle_button_get_active (toggle); in set_paint_type_callback()
489 current_style->paint_type = paint_type; in set_paint_type_callback()
492 gtk_widget_set_sensitive (GTK_WIDGET (data), paint_type); in set_paint_type_callback()
597 style1->paint_type = style0->paint_type; in gfig_style_copy()
712 style->paint_type); in gfig_style_set_context_from_style()
756 …style->paint_type = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (gfig_context->paint_type_togg… in gfig_style_set_style_from_context()
/dports/textproc/lasem/lasem-0.5.1/src/
H A Dlsmsvgtraits.c445 LsmSvgPaintType *paint_type) in _parse_color() argument
487 *paint_type = LSM_SVG_PAINT_TYPE_RGB_COLOR; in _parse_color()
517 *paint_type = LSM_SVG_PAINT_TYPE_RGB_COLOR; in _parse_color()
568 *paint_type = LSM_SVG_PAINT_TYPE_NONE; in _parse_color()
582 LsmSvgPaintType paint_type; in lsm_svg_paint_trait_from_string() local
607 switch (paint_type) { in lsm_svg_paint_trait_from_string()
615 paint_type = LSM_SVG_PAINT_TYPE_URI; in lsm_svg_paint_trait_from_string()
621 paint_type = LSM_SVG_PAINT_TYPE_URI; in lsm_svg_paint_trait_from_string()
625 paint->type = paint_type; in lsm_svg_paint_trait_from_string()
974 LsmSvgPaintType paint_type; in lsm_svg_color_trait_from_string() local
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/modules/canvas/canvas2d/
H A Dbase_rendering_context_2d.h453 CanvasRenderingContext2DState::PaintType paint_type, in Draw() argument
465 CompositedDraw(draw_func, GetPaintCanvas(), paint_type, image_type); in Draw()
470 GetState().GetFlags(paint_type, kDrawForegroundOnly, image_type); in Draw()
477 GetState().GetFlags(paint_type, kDrawShadowAndForeground, image_type); in Draw()
478 if (paint_type != CanvasRenderingContext2DState::kStrokePaintType && in Draw()
491 CanvasRenderingContext2DState::PaintType paint_type, in CompositedDraw() argument
502 *GetState().GetFlags(paint_type, kDrawShadowOnly, image_type); in CompositedDraw()
507 *GetState().GetFlags(paint_type, kDrawForegroundOnly, image_type); in CompositedDraw()
530 *GetState().GetFlags(paint_type, kDrawForegroundOnly, image_type); in CompositedDraw()
H A Dcanvas_rendering_context_2d_state.cc214 CanvasStyle* CanvasRenderingContext2DState::Style(PaintType paint_type) const { in Style()
215 switch (paint_type) { in Style()
577 PaintType paint_type, in GetFlags() argument
581 switch (paint_type) { in GetFlags()
/dports/print/ghostscript9-agpl-base/ghostscript-9.52/base/
H A Dgstype1.h36 int paint_type, gs_font_type1 * pfont);
42 #define gs_type1_init(pcis, penum, psbpt, charpath_flag, paint_type, pfont)\ argument
45 charpath_flag, paint_type, pfont) |\
/dports/print/ghostscript9-agpl-x11/ghostscript-9.52/base/
H A Dgstype1.h36 int paint_type, gs_font_type1 * pfont);
42 #define gs_type1_init(pcis, penum, psbpt, charpath_flag, paint_type, pfont)\ argument
45 charpath_flag, paint_type, pfont) |\
/dports/print/ghostscript8-x11/ghostscript-8.71/base/
H A Dgstype1.h39 int paint_type, gs_font_type1 * pfont);
45 #define gs_type1_init(pcis, penum, psbpt, charpath_flag, paint_type, pfont)\ argument
48 charpath_flag, paint_type, pfont) |\
/dports/print/ghostscript7-base/ghostscript-7.07/src/
H A Dgstype1.h43 bool charpath_flag, int paint_type,
50 #define gs_type1_init(pcis, penum, psbpt, charpath_flag, paint_type, pfont)\ argument
53 charpath_flag, paint_type, pfont) |\
H A Dgxfont42.h80 bool charpath_flag, int paint_type,
/dports/print/ghostscript9-x11/ghostscript-9.06/base/
H A Dgstype1.h41 int paint_type, gs_font_type1 * pfont);
47 #define gs_type1_init(pcis, penum, psbpt, charpath_flag, paint_type, pfont)\ argument
50 charpath_flag, paint_type, pfont) |\
/dports/print/ghostscript9-base/ghostscript-9.06/base/
H A Dgstype1.h41 int paint_type, gs_font_type1 * pfont);
47 #define gs_type1_init(pcis, penum, psbpt, charpath_flag, paint_type, pfont)\ argument
50 charpath_flag, paint_type, pfont) |\
/dports/print/ghostscript7-x11/ghostscript-7.07/src/
H A Dgstype1.h43 bool charpath_flag, int paint_type,
50 #define gs_type1_init(pcis, penum, psbpt, charpath_flag, paint_type, pfont)\ argument
53 charpath_flag, paint_type, pfont) |\
H A Dgxfont42.h80 bool charpath_flag, int paint_type,
/dports/print/ghostscript8-base/ghostscript-8.71/base/
H A Dgstype1.h39 int paint_type, gs_font_type1 * pfont);
45 #define gs_type1_init(pcis, penum, psbpt, charpath_flag, paint_type, pfont)\ argument
48 charpath_flag, paint_type, pfont) |\
/dports/games/retroarch/RetroArch-1.9.7/gfx/include/userland/interface/khronos/vg/
H A Dvg_int_util.h90 static INLINE bool is_paint_type(VGPaintType paint_type) in is_paint_type() argument
92 return (paint_type >= VG_PAINT_TYPE_COLOR) && in is_paint_type()
93 (paint_type <= VG_PAINT_TYPE_PATTERN); in is_paint_type()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/modules/canvas/offscreencanvas2d/
H A Doffscreen_canvas_rendering_context_2d.cc599 CanvasRenderingContext2DState::PaintType paint_type, in DrawTextInternal() argument
611 paint_type == CanvasRenderingContext2DState::kFillPaintType in DrawTextInternal()
661 if (paint_type == CanvasRenderingContext2DState::kStrokePaintType) in DrawTextInternal()
684 bounds, paint_type, CanvasRenderingContext2DState::kNoImage); in DrawTextInternal()
/dports/multimedia/gpac-libgpac/gpac-1.0.0/extra_lib/include/freetype/freetype/internal/
H A Dt1types.h112 FT_Byte paint_type; member
/dports/multimedia/gpac-mp4box/gpac-1.0.0/extra_lib/include/freetype/freetype/internal/
H A Dt1types.h112 FT_Byte paint_type; member

12345678910>>...25