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

1 2 3 45 6 7

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdipluscolor.h 244 VOID SetFromCOLORREF(COLORREF rgb)
246 BYTE r = (BYTE) rgb;
247 BYTE g = (BYTE) (rgb >> 8);
248 BYTE b = (BYTE) (rgb >> 16);
257 return RGB(GetRed(), GetGreen(), GetBlue());
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
imageformats.h 286 unsigned short RGB;
290 dst->red = gl::normalizedToFloat<5>(gl::getShiftedData<5, 11>(src->RGB));
291 dst->green = gl::normalizedToFloat<6>(gl::getShiftedData<6, 5>(src->RGB));
292 dst->blue = gl::normalizedToFloat<5>(gl::getShiftedData<5, 0>(src->RGB));
298 dst->RGB = gl::shiftData<5, 11>(gl::floatToNormalized<5, unsigned short>(src->red)) |
305 dst->RGB = gl::shiftData<5, 11>(gl::average(gl::getShiftedData<5, 11>(src1->RGB), gl::getShiftedData<5, 11>(src2->RGB))) |
306 gl::shiftData<6, 5>(gl::average(gl::getShiftedData<6, 5>(src1->RGB), gl::getShiftedData<6, 5>(src2->RGB))) |
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
main_wnd.cc 273 HBRUSH brush = ::CreateSolidBrush(RGB(0, 0, 0));
306 HBRUSH brush = ::CreateSolidBrush(RGB(0, 0, 0));
311 ::SetTextColor(ps.hdc, RGB(0xff, 0xff, 0xff));
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_quad_blend.c 48 RGB,
276 * Compute src/first term RGB
443 assert(0 && "invalid rgb src factor");
539 * Compute blend_dest/second term RGB
695 assert(0 && "invalid rgb dst factor");
776 * Combine RGB terms
805 assert(0 && "invalid rgb blend func");
886 case RGB:
    [all...]
  /external/deqp/framework/common/
tcuTextureUtil.cpp 274 case TextureFormat::RGB: chnMask = BVec4(true, true, true, false); break;
343 case TextureFormat::RGB: chnMask = BVec4(true, true, true, false); break;
411 case TextureFormat::RGB: chnMask = BVec4(true, true, true, false); break;
    [all...]
tcuTestLog.cpp 175 (format.order == TextureFormat::RGB || format.order == TextureFormat::RGBA)
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_blend.c 48 RGB,
276 * Compute src/first term RGB
443 assert(0 && "invalid rgb src factor");
539 * Compute blend_dest/second term RGB
695 assert(0 && "invalid rgb dst factor");
776 * Combine RGB terms
805 assert(0 && "invalid rgb blend func");
886 case RGB:
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PaletteControl.java 85 import org.eclipse.swt.graphics.RGB;
437 RGB background = mPreviewIconFactory.getBackgroundColor();
441 RGB foreground = mPreviewIconFactory.getForegroundColor();
    [all...]
  /external/chromium_org/printing/backend/
cups_helper.cc 142 *color_model_for_color = printing::RGB;
  /external/pdfium/core/src/fxge/win32/
fx_win32_dwrite.cpp 263 RGB(FXARGB_R(text_color), FXARGB_G(text_color), FXARGB_B(text_color))
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
UiTest.java 248 ProgramFragmentFixedFunction.Builder.Format.RGB, 0);
320 " varColor.rgb = ATTRIB_color.rgb;\n" +
  /packages/wallpapers/Galaxy4/src/com/android/galaxy4/
GalaxyRS.java 217 ProgramFragmentFixedFunction.Builder.Format.RGB, 0);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
XmlPropertyEditor.java 69 import org.eclipse.swt.graphics.RGB;
179 RGB rgb = ResourceHelper.resolveColor(resolver, resValue); local
180 if (rgb != null) {
181 Color color = new Color(gc.getDevice(), rgb);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceHelper.java 84 import org.eclipse.swt.graphics.RGB;
530 * Tries to resolve the given resource value to an actual RGB color. For state lists
535 * @return the corresponding {@link RGB} color, or null
537 public static RGB resolveColor(ResourceResolver resources, ResourceValue color) {
  /external/chromium_org/sandbox/win/sandbox_poc/
main_ui_window.cc 268 ListView_SetTextColor(list_view_, RGB(0x0, 0x0, 0x0));
  /external/deqp/modules/gles2/functional/
es2fBlendTests.cpp 183 m_refColorBuffer = new TextureLevel(TextureFormat(useRGB ? TextureFormat::RGB : TextureFormat::RGBA, TextureFormat::UNORM_INT8),
219 log << TestLog::Message << "RGB equation = " << getBlendEquationName(paramSet.equationRGB) << TestLog::EndMessage;
220 log << TestLog::Message << "RGB src func = " << getBlendFactorName(paramSet.srcFuncRGB) << TestLog::EndMessage;
221 log << TestLog::Message << "RGB dst func = " << getBlendFactorName(paramSet.dstFuncRGB) << TestLog::EndMessage;
338 // Test all blend equation, src blend function, dst blend function combinations. RGB and alpha modes are the same.
368 // Test all RGB src, alpha src and RGB dst, alpha dst combinations. Equations are ADD.
369 // \note For all RGB src, alpha src combinations, also test a couple of different RGBA dst functions, and vice versa.
372 TestCaseGroup* mainGroup = new TestCaseGroup(m_context, "rgb_func_alpha_func", "Combinations of RGB and Alpha Functions");
394 "RGB " + dstOrSrcStr + " func " + getBlendFactorName(funcRGB.glValue)
    [all...]
es2fFboRenderTest.cpp 268 case GL_RGB: return "rgb";
    [all...]
es2fRandomFragmentOpTests.cpp 269 m_refColorBuffer = new tcu::TextureLevel(tcu::TextureFormat(useRGB ? tcu::TextureFormat::RGB : tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), width, height);
  /external/deqp/modules/gles3/functional/
es3fBlendTests.cpp 211 m_refColorBuffer = new TextureLevel(TextureFormat(m_useSrgbFbo ? TextureFormat::sRGBA : useRGB ? TextureFormat::RGB : TextureFormat::RGBA, TextureFormat::UNORM_INT8),
272 log << TestLog::Message << "RGB equation = " << getBlendEquationName(paramSet.equationRGB) << TestLog::EndMessage;
273 log << TestLog::Message << "RGB src func = " << getBlendFactorName(paramSet.srcFuncRGB) << TestLog::EndMessage;
274 log << TestLog::Message << "RGB dst func = " << getBlendFactorName(paramSet.dstFuncRGB) << TestLog::EndMessage;
403 // Test all blend equation, src blend function, dst blend function combinations. RGB and alpha modes are the same.
436 // Test all RGB src, alpha src and RGB dst, alpha dst combinations. Equations are ADD.
437 // \note For all RGB src, alpha src combinations, also test a couple of different RGBA dst functions, and vice versa.
440 TestCaseGroup* mainGroup = new TestCaseGroup(m_context, "rgb_func_alpha_func", "Combinations of RGB and Alpha Functions");
459 "RGB " + dstOrSrcStr + " func " + getBlendFactorName(funcRGB.glValue)
    [all...]
es3fRandomFragmentOpTests.cpp 269 m_refColorBuffer = new tcu::TextureLevel(tcu::TextureFormat(useRGB ? tcu::TextureFormat::RGB : tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8), width, height);
  /hardware/ti/omap4xxx/hwc/
hwc.c 955 unsigned int RGB;
987 num->RGB++;
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
Spline.java 35 public static final int RGB = 0;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dxvahd.h 42 DXVAHD_COLOR_RGBA RGB;
  /external/deqp/modules/egl/
teglRenderTests.cpp 311 case PACK_FMT(8,8,8,0): return TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_INT8);
314 case PACK_FMT(5,6,5,0): return TextureFormat(TextureFormat::RGB, TextureFormat::UNORM_SHORT_565);
    [all...]
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
SkPdfNativeTokenizer.cpp     [all...]

Completed in 2080 milliseconds

1 2 3 45 6 7