Searched refs:colors (Results 101 - 125 of 531) sorted by relevance

1234567891011>>

/external/skia/include/core/
H A DSkColorTable.h19 SkColorTable holds an array SkPMColors (premultiplied 32-bit colors) used by
26 /** Makes a deep copy of colors.
29 SkColorTable(const SkPMColor colors[], int count,
39 /** Returns the number of colors in the table.
52 * Return the array of colors for reading. This must be balanced by a call
66 RGB16 colors that mirror the 32bit colors. However, this function
/external/skia/include/utils/
H A DSkMeshUtils.h46 const SkPoint verts[], const SkColor colors[],
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
H A DSDL_epocvideo.cpp119 SDL_Color *colors);
290 int EPOC_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors) argument
302 TUint32 color4K = (colors[i].r & 0x0000f0) << 4;
303 color4K |= (colors[i].g & 0x0000f0);
304 color4K |= (colors[i].b & 0x0000f0) >> 4;
315 TUint32 color64K = (colors[i].r & 0x0000f8) << 8;
316 color64K |= (colors[i].g & 0x0000fc) << 3;
317 color64K |= (colors[i].b & 0x0000f8) >> 3;
327 TUint32 color16M = colors[i].r << 16;
328 color16M |= colors[
[all...]
/external/chromium_org/third_party/skia/gm/
H A Dalphagradients.cpp27 SkColor colors[] = { c0, c1 }; local
31 SkShader* s = SkGradientShader::CreateLinear(pts, colors, NULL, 2,
H A Dbitmapfilters.cpp14 const SkColor colors[4] = { local
19 for (size_t i = 0; i < SK_ARRAY_COUNT(colors); ++i) {
20 colorsPM[i] = SkPreMultiplyColor(colors[i]);
H A Dcircles.cpp71 SkColor colors[] = { SK_ColorBLUE, SK_ColorRED, SK_ColorGREEN }; local
75 colors,
77 SK_ARRAY_COUNT(colors),
H A Dgiantbitmap.cpp33 const SkColor colors[] = { local
45 paint.setColor(colors[y/50 & 0x3]);
51 paint.setColor(colors[x/60 & 0x3]);
H A Dsrcmode.cpp27 const SkColor colors[] = { SK_ColorGREEN, SK_ColorBLUE }; local
29 SkShader* s = SkGradientShader::CreateLinear(pts, colors, NULL,
30 SK_ARRAY_COUNT(colors),
H A Dvertices.cpp14 const SkColor colors[] = { local
20 return SkGradientShader::CreateLinear(pts, colors, NULL,
21 SK_ARRAY_COUNT(colors),
/external/chromium_org/third_party/skia/samplecode/
H A DSampleRepeatTile.cpp23 const SkColor colors[] = { local
29 paint.setColor(colors[ix & 3]);
/external/chromium_org/third_party/skia/tools/lua/
H A Dgradients.lua16 --io.write(g.type, " gradient with ", g.colorCount, " colors\n")
/external/deqp/modules/glshared/
H A DglsRasterizationTestUtil.hpp61 tcu::Vec4 colors[3]; member in struct:deqp::gls::RasterizationTestUtil::TriangleSceneSpec::SceneTriangle
73 tcu::Vec4 colors[2]; member in struct:deqp::gls::RasterizationTestUtil::LineSceneSpec::SceneLine
115 * Triangle colors are not used. The triangle is expected to be white.
126 * Line colors are not used. The line is expected to be white.
137 * Point colors are not used. The point is expected to be white.
/external/fonttools/Lib/fontTools/pens/
H A DreportLabPen.py45 from reportlab.lib import colors namespace
56 pen = ReportLabPen(gs, Path(fillColor=colors.red, strokeWidth=5))
/external/fonttools/Tools/fontTools/pens/
H A DreportLabPen.py45 from reportlab.lib import colors namespace
56 pen = ReportLabPen(gs, Path(fillColor=colors.red, strokeWidth=5))
/external/qemu/distrib/sdl-1.2.15/src/video/ggi/
H A DSDL_ggivideo.c56 SDL_Color *colors);
355 int GGI_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors) argument
363 pal[i].r = (colors[i].r << 8) | colors[i].r;
364 pal[i].g = (colors[i].g << 8) | colors[i].g;
365 pal[i].b = (colors[i].b << 8) | colors[i].b;
/external/skia/gm/
H A Dalphagradients.cpp27 SkColor colors[] = { c0, c1 }; local
31 SkShader* s = SkGradientShader::CreateLinear(pts, colors, NULL, 2,
H A Dbitmapfilters.cpp14 const SkColor colors[4] = { local
19 for (size_t i = 0; i < SK_ARRAY_COUNT(colors); ++i) {
20 colorsPM[i] = SkPreMultiplyColor(colors[i]);
H A Dcircles.cpp71 SkColor colors[] = { SK_ColorBLUE, SK_ColorRED, SK_ColorGREEN }; local
75 colors,
77 SK_ARRAY_COUNT(colors),
H A Dgiantbitmap.cpp33 const SkColor colors[] = { local
45 paint.setColor(colors[y/50 & 0x3]);
51 paint.setColor(colors[x/60 & 0x3]);
/external/skia/samplecode/
H A DSampleRepeatTile.cpp23 const SkColor colors[] = { local
29 paint.setColor(colors[ix & 3]);
/external/skia/tools/lua/
H A Dgradients.lua16 --io.write(g.type, " gradient with ", g.colorCount, " colors\n")
/external/chromium_org/third_party/skia/src/core/
H A DSkShader.cpp137 SkPMColor colors[kTempColorCount]; local
140 this->shadeSpan(x, y, colors, kTempColorCount);
143 const uint8_t* srcA = (const uint8_t*)colors + SkU32BitShiftToByteOffset(SK_A32_SHIFT);
160 this->shadeSpan(x, y, colors, count);
162 const uint8_t* srcA = (const uint8_t*)colors + SkU32BitShiftToByteOffset(SK_A32_SHIFT);
175 this->shadeSpan(x, y, colors, n);
179 const uint8_t* srcA = (const uint8_t*)colors + SkU32BitShiftToByteOffset(SK_A32_SHIFT);
/external/skia/src/core/
H A DSkShader.cpp143 SkPMColor colors[kTempColorCount]; local
146 this->shadeSpan(x, y, colors, kTempColorCount);
149 const uint8_t* srcA = (const uint8_t*)colors + SkU32BitShiftToByteOffset(SK_A32_SHIFT);
166 this->shadeSpan(x, y, colors, count);
168 const uint8_t* srcA = (const uint8_t*)colors + SkU32BitShiftToByteOffset(SK_A32_SHIFT);
181 this->shadeSpan(x, y, colors, n);
185 const uint8_t* srcA = (const uint8_t*)colors + SkU32BitShiftToByteOffset(SK_A32_SHIFT);
/external/deqp/modules/egl/
H A DteglNativeColorMappingTests.cpp21 * \brief Test for mapping client color values to native surface colors
318 bool testNativeWindow (TestLog& log, eglu::NativeDisplay& nativeDisplay, eglu::NativeWindow& nativeWindow, EGLDisplay display, EGLContext context, EGLConfig config, const glw::Functions& gl, bool renderColor, int waitFrames, size_t colorCount, const tcu::Vec4* colors) argument
335 render(gl, program, colors[colorNdx]);
337 clear(gl, colors[colorNdx]);
344 if (!validate(log, display, config, result, colors[colorNdx]))
360 bool testNativePixmap (TestLog& log, eglu::NativeDisplay& nativeDisplay, eglu::NativePixmap& nativePixmap, EGLDisplay display, EGLContext context, EGLConfig config, const glw::Functions& gl, bool renderColor, size_t colorCount, const tcu::Vec4* colors) argument
377 render(gl, program, colors[colorNdx]);
379 clear(gl, colors[colorNdx]);
384 if (!validate(log, display, config, result, colors[colorNdx]))
400 bool testNativePixmapCopy (TestLog& log, eglu::NativePixmap& nativePixmap, EGLDisplay display, EGLContext context, EGLConfig config, const glw::Functions& gl, bool renderColor, size_t colorCount, const tcu::Vec4* colors) argument
471 const tcu::Vec4 colors[] = local
[all...]
/external/chromium_org/ui/views/examples/
H A Dbubble_example.cc21 SkColor colors[] = { SK_ColorWHITE, SK_ColorGRAY, SK_ColorCYAN, 0xFFC1B1E1 }; member in namespace:views::examples::__anon16316
99 bubble->set_color(colors[(color_index++) % arraysize(colors)]);

Completed in 699 milliseconds

1234567891011>>