HomeSort by relevance Sort by last modified time
    Searched refs:RGB (Results 51 - 75 of 173) sorted by null

1 23 4 5 6 7

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/
StretchesViewer.java 32 import org.eclipse.swt.graphics.RGB;
49 = new PaletteData(new RGB[] {new RGB(0x00, 0x00, 0xCC)});
  /external/chromium_org/printing/
print_job_constants.h 124 RGB,
print_settings.cc 51 case RGB:
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusColor.h 141 VOID SetFromCOLORREF(IN COLORREF rgb)
143 Argb = MakeARGB(255, GetRValue(rgb), GetGValue(rgb), GetBValue(rgb));
148 return RGB(GetRed(), GetGreen(), GetBlue());
  /external/qemu/distrib/sdl-1.2.15/src/hermes/
x86p_32.asm 263 ;; 32 bit RGB 888 to 24 BIT RGB 888
360 ;; 32 bit RGB 888 to 24 bit BGR 888
460 ;; 32 bit RGB 888 to 16 BIT RGB 565
575 ;; 32 bit RGB 888 to 16 BIT BGR 565
689 ;; 32 BIT RGB TO 16 BIT RGB 555
800 ;; 32 BIT RGB TO 16 BIT BGR 555
916 ;; FROM 32 BIT RGB to 8 BIT RGB (rrrgggbbb
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
cursor.cc 53 const uint32_t kPixelRgbWhite = RGB(0xff, 0xff, 0xff);
54 const uint32_t kPixelRgbBlack = RGB(0, 0, 0);
78 // Premultiplies RGB components of the pixel data in the given image by
212 // mask color Windows Result Our result RGB Alpha
  /external/deqp/framework/common/
tcuImageIO.cpp 114 textureFormat = TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8);
137 if (format == TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8))
151 * \note Only RGB/RGBA, UNORM_INT8 formats are supported
tcuImageCompare.cpp 212 TextureLevel errorMask (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), reference.getWidth(), reference.getHeight());
329 TextureLevel diffMask (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), reference.getWidth(), reference.getHeight());
415 TextureLevel errorMaskStorage (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), width, height, depth);
508 TextureLevel errorMaskStorage (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), width, height, depth);
596 TextureLevel errorMaskStorage (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), width, height, depth);
677 TextureLevel errorMaskStorage (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), width, height, depth);
772 TextureLevel errorMaskStorage (TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8), width, height, depth);
    [all...]
tcuFuzzyImageCompare.cpp 269 return format.type == TextureFormat::UNORM_INT8 && (format.order == TextureFormat::RGB || format.order == TextureFormat::RGBA);
296 case TextureFormat::RGB: separableConvolve<4, 3>(refFiltered, ref, shift, shift, kernel, kernel); break;
304 case TextureFormat::RGB: separableConvolve<4, 3>(cmpFiltered, cmp, shift, shift, kernel, kernel); break;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourcePreviewHelper.java 36 import org.eclipse.swt.graphics.RGB;
131 RGB color = ResourceHelper.resolveColor(resources, value);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_compiler.c 383 if (tmp->U.P.RGB.Src[RC_PAIR_PRESUB_SRC].Used)
391 if (tmp->U.P.RGB.Opcode != RC_OPCODE_NOP)
393 if (tmp->U.P.RGB.Omod != RC_OMOD_MUL_1 &&
394 tmp->U.P.RGB.Omod != RC_OMOD_DISABLE) {
401 info = rc_get_opcode_info(tmp->U.P.RGB.Opcode);
436 "~%4u Vector Instructions (RGB)\n"
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_compiler.c 383 if (tmp->U.P.RGB.Src[RC_PAIR_PRESUB_SRC].Used)
391 if (tmp->U.P.RGB.Opcode != RC_OPCODE_NOP)
393 if (tmp->U.P.RGB.Omod != RC_OMOD_MUL_1 &&
394 tmp->U.P.RGB.Omod != RC_OMOD_DISABLE) {
401 info = rc_get_opcode_info(tmp->U.P.RGB.Opcode);
436 "~%4u Vector Instructions (RGB)\n"
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
Color.js 57 // Simple - #hex, rgb(), nickname, hsl()
59 var simple = /^(?:#([0-9a-f]{3,6})|rgb\(([^)]+)\)|(\w+)|hsl\(([^)]+)\))$/i;
76 if (match[2]) { // rgb
81 return new WebInspector.Color(rgba, WebInspector.Color.Format.RGB, text);
288 case WebInspector.Color.Format.RGB:
291 return String.sprintf("rgb(%d, %d, %d)", toRgbValue(this._rgba[0]), toRgbValue(this._rgba[1]), toRgbValue(this._rgba[2]));
641 RGB: "rgb",
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
BMPImageReader.cpp 239 m_infoHeader.biCompression = RGB;
280 // compression format isn't BITFIELDS, the RGB bitmasks will be ignored and
322 // Each compression type is only valid with certain bit depths (except RGB,
326 case RGB:
378 // Top-down bitmaps cannot be compressed; they must be RGB or BITFIELDS.
379 if (m_isTopDown && (m_infoHeader.biCompression != RGB) && (m_infoHeader.biCompression != BITFIELDS))
409 // logic later, create bitmasks for the RGB data. For Windows V4+,
480 // data (for example, bits 25-31 in a 24-bit RGB format).
754 // RGB data. Decode pixels one at a time, left to right.
    [all...]
BMPImageReader.h 86 RGB = 0,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 35 import org.eclipse.swt.graphics.RGB;
374 RGB backgroundRgb = new RGB(254, 254, 254);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewProjectWizard.java 48 import org.eclipse.swt.graphics.RGB;
129 iconState.background = new RGB(0xff, 0xff, 0xff);
130 iconState.foreground = new RGB(0x33, 0xb6, 0xea);
TemplateMetadata.java 56 import org.eclipse.swt.graphics.RGB;
264 RGB background = getRgb(icon, ATTR_BACKGROUND);
268 RGB foreground = getRgb(icon, ATTR_FOREGROUND);
335 private static RGB getRgb(@NonNull Element element, @NonNull String name) {
338 int rgb = ImageUtils.getColor(colorString.trim()); local
339 return ImageUtils.intToRgb(rgb);
  /external/chromium_org/content/browser/compositor/
software_output_device_win.cc 89 RGB(0xFF, 0xFF, 0xFF), &blend, ULW_ALPHA);
  /external/chromium_org/content/test/plugin/
plugin_windowed_test.cc 132 HBRUSH brush = CreateSolidBrush(RGB(255, 0, 0));
  /external/deqp/framework/platform/win32/
tcuWin32Window.cpp 56 wndClass.hbrBackground = CreateSolidBrush(RGB(0, 0, 0));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 128 def RGB(red, green, blue):
179 'MSG', 'OLESTR', 'POINT', 'POINTL', 'RECT', 'RECTL', 'RGB',
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 128 def RGB(red, green, blue):
179 'MSG', 'OLESTR', 'POINT', 'POINTL', 'RECT', 'RECTL', 'RGB',
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_parse.py 39 RGB = 'rgb'
258 if colorspace in (RGB, SRGB):
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
vie_autotest_render.cc 32 #undef RGB
33 #define RGB(r,g,b) ((unsigned long)(((unsigned char)(r)|((unsigned short)((unsigned char)(g))<<8))|(((unsigned long)(unsigned char)(b))<<16)))

Completed in 2393 milliseconds

1 23 4 5 6 7