HomeSort by relevance Sort by last modified time
    Searched refs:RGBA (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/resources/local_ntp/
instant_iframe_validation.js 30 * Validates a RGBA color component. It must be a number between 0 and 255.
31 * @param {number} component An RGBA component.
40 * Converts an Array of color components into RGBA format "rgba(R,G,B,A)".
41 * @param {Array.<number>} rgbaColor Array of rgba color components.
42 * @return {?string} CSS color in RGBA format or null if invalid.
51 return 'rgba(' +
  /external/chromium_org/third_party/mesa/src/docs/OLD/
MESA_packed_depth_stencil.spec 92 RGBA Color R, G, B, A components
116 UNSIGNED_SHORT_4_4_4_4 ushort 4 RGBA,BGRA,ABGR_EXT,CMYK_EXT
117 UNSIGNED_SHORT_4_4_4_4_REV ushort 4 RGBA,BGRA
118 UNSIGNED_SHORT_5_5_5_1 ushort 4 RGBA,BGRA,ABGR_EXT,CMYK_EXT
119 UNSIGNED_SHORT_1_5_5_5_REV ushort 4 RGBA,BGRA
120 UNSIGNED_INT_8_8_8_8 uint 4 RGBA,BGRA,ABGR_EXT,CMYK_EXT
121 UNSIGNED_INT_8_8_8_8_REV uint 4 RGBA,BGRA
122 UNSIGNED_INT_10_10_10_2 uint 4 RGBA,BGRA,ABGR_EXT,CMYK_EXT
123 UNSIGNED_INT_2_10_10_10_REV uint 4 RGBA,BGRA
178 RGBA red green blue alph
    [all...]
  /external/mesa3d/docs/OLD/
MESA_packed_depth_stencil.spec 92 RGBA Color R, G, B, A components
116 UNSIGNED_SHORT_4_4_4_4 ushort 4 RGBA,BGRA,ABGR_EXT,CMYK_EXT
117 UNSIGNED_SHORT_4_4_4_4_REV ushort 4 RGBA,BGRA
118 UNSIGNED_SHORT_5_5_5_1 ushort 4 RGBA,BGRA,ABGR_EXT,CMYK_EXT
119 UNSIGNED_SHORT_1_5_5_5_REV ushort 4 RGBA,BGRA
120 UNSIGNED_INT_8_8_8_8 uint 4 RGBA,BGRA,ABGR_EXT,CMYK_EXT
121 UNSIGNED_INT_8_8_8_8_REV uint 4 RGBA,BGRA
122 UNSIGNED_INT_10_10_10_2 uint 4 RGBA,BGRA,ABGR_EXT,CMYK_EXT
123 UNSIGNED_INT_2_10_10_10_REV uint 4 RGBA,BGRA
178 RGBA red green blue alph
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasStyle.cpp 61 RGBA32 rgba = Color::black;
62 CSSParser::parseColor(rgba, canvas->inlineStyle()->getPropertyValue(CSSPropertyColor));
63 return rgba;
90 CanvasStyle::CanvasStyle(RGBA32 rgba)
91 : m_type(RGBA)
92 , m_rgba(rgba)
97 : m_type(RGBA)
103 : m_type(RGBA)
129 RGBA32 rgba; local
130 ColorParseResult parseResult = parseColor(rgba, color, document)
147 RGBA32 rgba; local
    [all...]
CanvasStyle.h 45 static PassRefPtr<CanvasStyle> createFromRGBA(RGBA32 rgba) { return adoptRef(new CanvasStyle(rgba)); }
58 String color() const { ASSERT(m_type == RGBA || m_type == CMYKA); return Color(m_rgba).serialized(); }
70 enum Type { RGBA, CMYKA, Gradient, ImagePattern, CurrentColor, CurrentColorWithOverrideAlpha };
73 CanvasStyle(RGBA32 rgba);
WebGLDrawBuffers.cpp 144 context->texImage2D(GraphicsContext3D::TEXTURE_2D, 0, GraphicsContext3D::RGBA, 1, 1, 0, GraphicsContext3D::RGBA, GraphicsContext3D::UNSIGNED_BYTE, buffer);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
FECustomFilter.cpp 196 m_context->readPixels(0, 0, newContextSize.width(), newContextSize.height(), GraphicsContext3D::RGBA, GraphicsContext3D::UNSIGNED_BYTE, dstPixelArray->data());
211 m_context->texImage2D(GraphicsContext3D::TEXTURE_2D, 0, GraphicsContext3D::RGBA, m_contextSize.width(), m_contextSize.height(), 0, GraphicsContext3D::RGBA, GraphicsContext3D::UNSIGNED_BYTE, srcPixelArray->data());
334 m_context->texImage2D(GraphicsContext3D::TEXTURE_2D, 0, GraphicsContext3D::RGBA, newContextSize.width(), newContextSize.height(), 0, GraphicsContext3D::RGBA, GraphicsContext3D::UNSIGNED_BYTE, 0);
  /external/chromium/webkit/glue/
webvideoframe_impl.cc 39 COMPILE_ASSERT_MATCHING_ENUM(FormatRGBA, RGBA);
  /external/chromium_org/printing/
print_job_constants.h 114 RGBA,
  /frameworks/base/graphics/java/android/renderscript/
ProgramFragmentFixedFunction.java 146 RGBA (4);
192 mShader += " col.rgba = texture2D(UNI_Tex0, t0).rgba;\n";
197 case RGBA:
198 mShader += " col.rgba = texture2D(UNI_Tex0, t0).rgba;\n";
208 mShader += " col.rgba *= texture2D(UNI_Tex0, t0).rgba;\n";
213 case RGBA:
214 mShader += " col.rgba *= texture2D(UNI_Tex0, t0).rgba;\n"
    [all...]
  /external/webp/examples/
dwebp.c 142 unsigned char* const rgb = buffer->u.RGBA.rgba;
143 const int stride = buffer->u.RGBA.stride;
160 unsigned char* const rgb = buffer->u.RGBA.rgba;
161 const int stride = buffer->u.RGBA.stride;
209 const unsigned char* const rgb = buffer->u.RGBA.rgba;
210 const int stride = buffer->u.RGBA.stride;
346 " -pam ......... save the raw RGBA samples as a color PAM\n
    [all...]
  /cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
ProgramFragmentFixedFunctionTest.java 102 assertEquals(Builder.Format.RGBA, Builder.Format.valueOf("RGBA"));
  /frameworks/base/tests/RenderScriptTests/FountainFbo/src/com/example/android/rs/fountainfbo/
FountainFboRS.java 62 ProgramFragmentFixedFunction.Builder.Format.RGBA, 0);
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
TestAppLoadingScreen.java 84 ProgramFragmentFixedFunction.Builder.Format.RGBA, 0);
  /external/chromium_org/third_party/libwebp/dec/
buffer.c 68 const WebPRGBABuffer* const buf = &buffer->u.RGBA;
72 ok &= (buf->rgba != NULL);
128 } else { // RGBA initialization
129 WebPRGBABuffer* const buf = &buffer->u.RGBA;
130 buf->rgba = output;
io.c 52 const WebPRGBABuffer* const buf = &output->u.RGBA;
53 uint8_t* dst = buf->rgba + io->mb_y * buf->stride;
81 const WebPRGBABuffer* const buf = &output->u.RGBA;
82 uint8_t* dst = buf->rgba + io->mb_y * buf->stride;
107 const WebPRGBABuffer* const buf = &p->output->u.RGBA;
108 uint8_t* dst = buf->rgba + io->mb_y * buf->stride;
222 const WebPRGBABuffer* const buf = &p->output->u.RGBA;
225 uint8_t* const base_rgba = buf->rgba + start_y * buf->stride;
253 const WebPRGBABuffer* const buf = &p->output->u.RGBA;
256 uint8_t* const base_rgba = buf->rgba + start_y * buf->stride
    [all...]
idec.c 640 idec->output_.u.RGBA.rgba = output_buffer;
641 idec->output_.u.RGBA.stride = output_stride;
642 idec->output_.u.RGBA.size = output_buffer_size;
793 if (stride != NULL) *stride = src->u.RGBA.stride;
795 return src->u.RGBA.rgba;
  /external/webp/src/dec/
buffer.c 68 const WebPRGBABuffer* const buf = &buffer->u.RGBA;
72 ok &= (buf->rgba != NULL);
128 } else { // RGBA initialization
129 WebPRGBABuffer* const buf = &buffer->u.RGBA;
130 buf->rgba = output;
io.c 52 const WebPRGBABuffer* const buf = &output->u.RGBA;
53 uint8_t* dst = buf->rgba + io->mb_y * buf->stride;
81 const WebPRGBABuffer* const buf = &output->u.RGBA;
82 uint8_t* dst = buf->rgba + io->mb_y * buf->stride;
107 const WebPRGBABuffer* const buf = &p->output->u.RGBA;
108 uint8_t* dst = buf->rgba + io->mb_y * buf->stride;
222 const WebPRGBABuffer* const buf = &p->output->u.RGBA;
225 uint8_t* const base_rgba = buf->rgba + start_y * buf->stride;
253 const WebPRGBABuffer* const buf = &p->output->u.RGBA;
256 uint8_t* const base_rgba = buf->rgba + start_y * buf->stride
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Color.js 31 * @param {Array.<number>} rgba
36 WebInspector.Color = function(rgba, format, originalText)
38 this._rgba = rgba;
78 var rgba = [ WebInspector.Color._parseRgbNumeric(rgbString[0]),
81 return new WebInspector.Color(rgba, WebInspector.Color.Format.RGB, text);
87 var rgba = WebInspector.Color.Nicknames[nickname];
88 var color = WebInspector.Color.fromRGBA(rgba);
101 var rgba = WebInspector.Color._hsl2rgb(hsla);
102 return new WebInspector.Color(rgba, WebInspector.Color.Format.HSL, text);
108 // Advanced - rgba(), hsla(
    [all...]
Spectrum.js 214 // Everything except HSL(A) should be returned as RGBA if transparency is involved.
218 return color.toString(cf.RGBA);
268 this._swatchInnerElement.style.backgroundColor = this.color().toString(WebInspector.Color.Format.RGBA);
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/webp/
WEBPImageDecoder.cpp 355 // The input image pixels are RGBA format.
521 mode = MODE_RGBA; // Decode to RGBA for input to libqcms.
525 m_decoderBuffer.u.RGBA.stride = size().width() * sizeof(ImageFrame::PixelData);
526 m_decoderBuffer.u.RGBA.size = m_decoderBuffer.u.RGBA.stride * frameRect.height();
533 m_decoderBuffer.u.RGBA.rgba = reinterpret_cast<uint8_t*>(buffer.getAddr(frameRect.x(), frameRect.y()));
  /frameworks/rs/java/tests/Balls/src/com/example/android/rs/balls/
BallsRS.java 93 ProgramFragmentFixedFunction.Builder.Format.RGBA, 0);
  /external/libyuv/files/unit_test/
planar_test.cc 90 TESTPLANARTOB(I420, 2, 2, RGBA, 4)
99 TESTPLANARTOB(I422, 2, 1, RGBA, 4)
248 TESTATOPLANAR(RGBA, 4, I420, 2, 2)
312 TESTATOB(ARGB, 4, 4, RGBA, 4)
320 TESTATOB(RGBA, 4, 4, ARGB, 4)
370 TESTATOBRANDOM(ARGB, 4, 4, RGBA, 4)
379 TESTATOBRANDOM(RGBA, 4, 4, ARGB, 4)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/gpu/
DrawingBuffer.cpp 196 extensions->copyTextureCHROMIUM(GraphicsContext3D::TEXTURE_2D, m_colorBuffer, nextFrontColorBuffer->textureId, 0, GraphicsContext3D::RGBA, GraphicsContext3D::UNSIGNED_BYTE);
269 m_internalColorFormat = GraphicsContext3D::RGBA;
270 m_colorFormat = GraphicsContext3D::RGBA;
328 extensions->copyTextureCHROMIUM(GraphicsContext3D::TEXTURE_2D, m_frontColorBuffer, sourceTexture, 0, GraphicsContext3D::RGBA, GraphicsContext3D::UNSIGNED_BYTE);
561 m_context->readPixels(0, 0, 1, 1, GraphicsContext3D::RGBA, GraphicsContext3D::UNSIGNED_BYTE, &pixel);

Completed in 861 milliseconds

1 2 3