Searched defs:background (Results 1 - 25 of 45) sorted by relevance

12

/external/skia/include/effects/
H A DSkXfermodeImageFilter.h19 * over the background. If foreground or background is NULL, the input
26 static SkXfermodeImageFilter* Create(SkXfermode* mode, SkImageFilter* background, argument
29 SkImageFilter* inputs[2] = { background, foreground };
/external/skia/tests/
H A Dskpdf_opaquesrcmodetosrcover.cpp16 SkPaint background; local
17 background.setColor(SK_ColorWHITE);
18 background.setAlpha(alpha);
19 background.setXfermodeMode(mode);
20 c->drawRect(SkRect::MakeWH(612.0f, 792.0f), background);
22 c->drawRect(SkRect::MakeXYWH(72.0f, 72.0f, 468.0f, 648.0f), background);
/external/libpng/contrib/gregbook/
H A Dwritepng.c164 png_color_16 background; local
166 background.red = mainprog_ptr->bg_red;
167 background.green = mainprog_ptr->bg_green;
168 background.blue = mainprog_ptr->bg_blue;
169 png_set_bKGD(png_ptr, info_ptr, &background);
/external/skia/gm/
H A Dshaderbounds.cpp78 SkShader* MakeShader(int width, int height, bool background) { argument
80 if (background) {
86 SkShader* shader = fShaderMaker(shaderWidth, shaderHeight, background, shaderScale);
96 SkShader* MakeShader(bool background);
/external/skia/src/effects/
H A DSkArithmeticMode_gpu.h35 GrTexture* background) {
36 return SkNEW_ARGS(GrArithmeticFP, (k1, k2, k3, k4, enforcePMColor, background));
59 GrTexture* background);
34 Create(float k1, float k2, float k3, float k4, bool enforcePMColor, GrTexture* background) argument
H A DSkXfermodeImageFilter.cpp50 SkBitmap background = src, foreground = src; local
55 !backgroundInput->filterImage(proxy, src, ctx, &background, &backgroundOffset)) {
56 background.reset();
69 if (!applyCropRect(ctx, background, backgroundOffset, &bounds)) {
71 background.reset();
86 canvas.drawBitmap(background, SkIntToScalar(backgroundOffset.fX),
122 SkBitmap background = src; local
124 if (getInput(0) && !getInput(0)->getInputResultGPU(proxy, src, ctx, &background,
128 GrTexture* backgroundTex = background.getTexture();
H A DSkArithmeticMode_gpu.cpp105 bool enforcePMColor, GrTexture* background)
109 SkASSERT(background);
111 fBackgroundTransform.reset(kLocal_GrCoordSet, background,
114 fBackgroundAccess.reset(background);
104 GrArithmeticFP(float k1, float k2, float k3, float k4, bool enforcePMColor, GrTexture* background) argument
/external/replicaisland/src/com/replica/replicaisland/
H A DLevelBuilder.java48 // Generate the scrolling background.
51 GameObject background = new GameObject();
90 // The background image is ideally 1.5 times the size of the largest screen axis
101 // Scroll speeds such that the background will evenly match the beginning
112 background.add(scroller3);
113 background.add(backgroundRender);
116 return background;
119 public void addTileMapLayer(GameObject background, int priority, float scrollSpeed, argument
176 background.add(scroller);
177 background
[all...]
H A DHudSystem.java169 public void setFuelDrawable(DrawableBitmap fuel, DrawableBitmap background) { argument
171 mFuelBackgroundDrawable = background;
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
H A DViewPort.java53 * The background color which the color buffer is cleared to can be specified
318 * Sets the background color.
323 * By default the background color is black without alpha.
325 * @param background the background color.
327 public void setBackgroundColor(ColorRGBA background){ argument
328 backColor.set(background);
332 * Returns the background color of this ViewPort
334 * @return the background color of this ViewPort
/external/libpng/
H A Dpnginfo.h159 /* The bKGD chunk gives the suggested image background color if the
160 * display program does not have its own background color and the image
161 * is needs to composited onto a background before display. The colors
162 * in "background" are normally in the same color space/depth as the
165 png_color_16 background; member in struct:png_info_def
H A Dpngget.c458 png_color_16p *background)
461 && background != NULL)
465 *background = &(info_ptr->background);
457 png_get_bKGD(png_const_structrp png_ptr, png_inforp info_ptr, png_color_16p *background) argument
H A Dpngset.c26 png_const_color_16p background)
30 if (png_ptr == NULL || info_ptr == NULL || background == NULL)
33 info_ptr->background = *background;
25 png_set_bKGD(png_const_structrp png_ptr, png_inforp info_ptr, png_const_color_16p background) argument
H A Dpngread.c294 /* Initialize palette, background, etc, after transformations
1219 * the background (not recommended).
1260 /* We don't handle background color or gamma transformation or quantizing.
1341 /* Optional call to gamma correct and add the background to the palette
1398 #define PNG_CMAP_TRANS 2 /* Process GA data to a background index */
1402 /* The following document where the background is for each processing case. */
1416 png_const_colorp background; member in struct:__anon9093
1850 png_uint_32 background, int encoding)
1852 /* The file value is composed on the background, the background ha
1848 png_colormap_compose(png_image_read_control *display, png_uint_32 foreground, int foreground_encoding, png_uint_32 alpha, png_uint_32 background, int encoding) argument
3634 png_uint_16 background = png_sRGB_table[background8]; local
4202 png_image_finish_read(png_imagep image, png_const_colorp background, void *buffer, png_int_32 row_stride, void *colormap) argument
[all...]
H A Dpngrutil.c1891 png_color_16 background; local
1936 * arbitrary RGB values for background when we have transparency, and
1937 * so it is easy to determine the RGB values of the background color
1942 background.index = buf[0];
1952 background.red = (png_uint_16)png_ptr->palette[buf[0]].red;
1953 background.green = (png_uint_16)png_ptr->palette[buf[0]].green;
1954 background.blue = (png_uint_16)png_ptr->palette[buf[0]].blue;
1958 background.red = background.green = background
[all...]
/external/pdfium/samples/fx_lpng/lpng_v163/
H A Dpnginfo.h159 /* The bKGD chunk gives the suggested image background color if the
160 * display program does not have its own background color and the image
161 * is needs to composited onto a background before display. The colors
162 * in "background" are normally in the same color space/depth as the
165 png_color_16 background; member in struct:png_info_def
H A Dfx_pngget.c457 png_color_16p *background)
460 && background != NULL)
464 *background = &(info_ptr->background);
456 png_get_bKGD(png_const_structrp png_ptr, png_inforp info_ptr, png_color_16p *background) argument
H A Dfx_pngset.c25 png_const_color_16p background)
29 if (png_ptr == NULL || info_ptr == NULL || background == NULL)
32 info_ptr->background = *background;
24 png_set_bKGD(png_const_structrp png_ptr, png_inforp info_ptr, png_const_color_16p background) argument
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPopupWindow.java26 private Drawable background; field in class:ShadowPopupWindow
129 public void setBackgroundDrawable(Drawable background) { argument
130 this.background = background;
135 return background;
147 containerView.setBackgroundDrawable(background);
/external/webp/src/enc/
H A Dpicture_tools.c180 const uint32_t background = MakeARGB32(red, green, blue); local
194 argb[x] = background;
/external/libvncserver/libvncserver/
H A Dcursor.c369 /* background and foregroud colour have to be set beforehand */
375 uint32_t background; local
376 char *back=(char*)&background;
398 background = ((format->redMax * cursor->backRed) / 0xffff) << format->redShift |
444 uint32_t background,foreground; local
445 char *back=(char*)&background,*fore=(char*)&foreground;
459 background=cursor->backRed<<format->redShift|
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_device.cpp347 CFX_DIBitmap background; local
348 if (!background.Create(bg_pixel_width, bg_pixel_height,
352 if (!m_pDeviceDriver->GetDIBits(&background, dest_rect.left, dest_rect.top)) {
355 if (!background.CompositeBitmap(0, 0, bg_pixel_width, bg_pixel_height,
361 return m_pDeviceDriver->SetDIBits(&background, 0, &src_rect, dest_rect.left, dest_rect.top, FXDIB_BLEND_NORMAL);
/external/skia/src/gpu/effects/
H A DGrCustomXfermode.cpp419 GrFragmentProcessor* GrCustomXfermode::CreateFP(SkXfermode::Mode mode, GrTexture* background) { argument
423 return SkNEW_ARGS(GrCustomXferFP, (mode, background));
453 // The background may come from the dst or from a texture.
466 GrCustomXferFP::GrCustomXferFP(SkXfermode::Mode mode, GrTexture* background) argument
470 SkASSERT(background);
471 fBackgroundTransform.reset(kLocal_GrCoordSet, background,
474 fBackgroundAccess.reset(background);
/external/kernel-headers/original/uapi/linux/
H A Domapfb.h168 __u32 background; member in struct:omapfb_color_key
/external/robolectric/src/test/java/com/xtremelabs/robolectric/
H A DR.java87 public static final int background = nextId++; field in class:R.color

Completed in 758 milliseconds

12