HomeSort by relevance Sort by last modified time
    Searched full:dst_color (Results 1 - 7 of 7) sorted by null

  /gdk/samples/PhotoEditor/jni/
grayscale.cpp 64 int32_t dst_color = (kRedRatio * src_red + kGreenRatio * src_green + local
66 if (dst_color > 255) {
67 dst_color = 255;
69 *dst = (src_alpha << 24) | (dst_color << 16) | (dst_color << 8) | dst_color;
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ProgramStoreTest.java 99 assertEquals(BlendSrcFunc.DST_COLOR,
100 BlendSrcFunc.valueOf("DST_COLOR"));
  /frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
UT_program_store.java 72 blendSrc = b.setBlendFunc(ProgramStore.BlendSrcFunc.DST_COLOR,
  /external/skia/include/core/
SkXfermode.h 58 result = src_coeff * src_color + dst_coeff * dst_color;
  /frameworks/base/graphics/java/android/renderscript/
ProgramStore.java 99 DST_COLOR (2),
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext3D.h 129 DST_COLOR = 0x0306,
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
WebGLRenderingContext.idl 73 const unsigned int DST_COLOR = 0x0306;
    [all...]

Completed in 127 milliseconds