HomeSort by relevance Sort by last modified time
    Searched defs:dstA (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/third_party/skia/src/effects/
SkLerpXfermode.cpp 92 unsigned dstA = dst[i];
93 unsigned resA = SkAlphaBlend(SkGetPackedA32(src[i]), dstA, scale);
95 resA = SkAlphaBlend(resA, dstA, a + (a >> 7));
  /external/skia/src/effects/
SkLerpXfermode.cpp 92 unsigned dstA = dst[i];
93 unsigned resA = SkAlphaBlend(SkGetPackedA32(src[i]), dstA, scale);
95 resA = SkAlphaBlend(resA, dstA, a + (a >> 7));
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_cc.c 155 GLenum dstA = ctx->Color.Blend[0].DstA;
165 dstA = fix_xRGB_alpha(dstA);
173 srcA = dstA = GL_ONE;
180 cc->cc5.ia_dest_blend_factor = brw_translate_blend_factor(dstA);
186 dstA != dstRGB ||
gen6_cc.c 103 GLenum dstA = ctx->Color.Blend[b].DstA;
110 srcA = dstA = GL_ONE;
117 blend[b].blend0.ia_dest_blend_factor = brw_translate_blend_factor(dstA);
123 dstA != dstRGB ||
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_cc.c 155 GLenum dstA = ctx->Color.Blend[0].DstA;
165 dstA = fix_xRGB_alpha(dstA);
173 srcA = dstA = GL_ONE;
180 cc->cc5.ia_dest_blend_factor = brw_translate_blend_factor(dstA);
186 dstA != dstRGB ||
gen6_cc.c 103 GLenum dstA = ctx->Color.Blend[b].DstA;
110 srcA = dstA = GL_ONE;
117 blend[b].blend0.ia_dest_blend_factor = brw_translate_blend_factor(dstA);
123 dstA != dstRGB ||
  /cts/tests/tests/rscpp/librscpptest/
rs_jni_allocation.cpp 284 sp<Allocation> dstA = Allocation::createSized(mRS, Element::F32(mRS), nElems);
297 dstA->copy1DRangeFrom(offset, count, srcA, offset);
298 dstA->copy1DTo(dst);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationTest.java 426 Allocation dstA = Allocation.createSized(mRS, Element.F32(mRS), nElems);
439 dstA.copy1DRangeFrom(offset, count, srcA, offset);
440 dstA.copyTo(dst);
450 Allocation dstA = Allocation.createSized(mRS, Element.I8(mRS), nElems);
463 dstA.copy1DRangeFrom(offset, count, srcA, offset);
464 dstA.copyTo(dst);
584 Allocation dstA = Allocation.createTyped(mRS, b.setX(nElemsX).setY(nElemsY).create());
594 dstA.copy2DRangeFrom(xOffset, yOffset, width, height, srcA, xOffset, yOffset);
595 dstA.copyTo(dst);
610 Allocation dstA = Allocation.createTyped(mRS, b.setX(nElemsX).setY(nElemsY).create())
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_blend.c 133 ASSERT(ctx->Color.Blend[0].DstA == GL_ONE_MINUS_SRC_ALPHA);
178 ASSERT(ctx->Color.Blend[0].DstA == GL_ONE_MINUS_SRC_ALPHA);
216 ASSERT(ctx->Color.Blend[0].DstA == GL_ONE_MINUS_SRC_ALPHA);
690 switch (ctx->Color.Blend[0].DstA) {
910 const GLenum dstA = ctx->Color.Blend[0].DstA;
935 else if (srcRGB != srcA || dstRGB != dstA) {
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_blend.c 133 ASSERT(ctx->Color.Blend[0].DstA == GL_ONE_MINUS_SRC_ALPHA);
178 ASSERT(ctx->Color.Blend[0].DstA == GL_ONE_MINUS_SRC_ALPHA);
216 ASSERT(ctx->Color.Blend[0].DstA == GL_ONE_MINUS_SRC_ALPHA);
690 switch (ctx->Color.Blend[0].DstA) {
910 const GLenum dstA = ctx->Color.Blend[0].DstA;
935 else if (srcRGB != srcA || dstRGB != dstA) {
    [all...]
  /external/chromium_org/third_party/skia/tests/
Matrix44Test.cpp 192 SkMScalar dstA[4], dstB[4];
195 dstA[i] = 123456789;
199 mat.map2(src2, 1, dstA);
203 REPORTER_ASSERT(reporter, dstA[i] == dstB[i]);
  /external/skia/tests/
Matrix44Test.cpp 192 SkMScalar dstA[4], dstB[4];
195 dstA[i] = 123456789;
199 mat.map2(src2, 1, dstA);
203 REPORTER_ASSERT(reporter, dstA[i] == dstB[i]);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_state.c 112 unsigned dstA = blend->rt[0].alpha_dst_factor;
119 dstA != dstRGB ||
129 DST_ABLND_FACT(i915_translate_blend_factor(dstA)) |
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_state.c 301 GLuint dstA = ctx->Color.Blend[0].DstA;
308 srcA = dstA = GL_ONE;
316 iab |= DST_ABLND_FACT(intel_translate_blend_factor(dstA));
319 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB)
338 GLenum dstRGB, GLenum srcA, GLenum dstA)
    [all...]
  /external/deqp/framework/referencerenderer/
rrFragmentOperations.cpp 602 const float dstA = dstColor.w();
603 const float p0 = srcA*dstA;
604 const float p1 = srcA*(1.0f-dstA);
605 const float p2 = dstA*(1.0f-srcA);
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_state.c 112 unsigned dstA = blend->rt[0].alpha_dst_factor;
119 dstA != dstRGB ||
129 DST_ABLND_FACT(i915_translate_blend_factor(dstA)) |
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_state.c 301 GLuint dstA = ctx->Color.Blend[0].DstA;
308 srcA = dstA = GL_ONE;
316 iab |= DST_ABLND_FACT(intel_translate_blend_factor(dstA));
319 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB)
338 GLenum dstRGB, GLenum srcA, GLenum dstA)
    [all...]
  /external/opencv/cv/src/
cvsubdivision2d.cpp 199 CvSubdiv2DPoint *orgB, *dstA;
209 dstA = cvSubdiv2DEdgeDst( edgeA );
211 cvSubdiv2DSetEdgePoints( new_edge, dstA, orgB );
225 CvSubdiv2DPoint *dstB, *dstA;
230 dstA = cvSubdiv2DEdgeDst( a );
232 cvSubdiv2DSetEdgePoints( edge, dstA, dstB );
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_state.c 59 unsigned dstRGB, unsigned dstA)
74 (dstA == PIPE_BLENDFACTOR_INV_SRC_COLOR ||
75 dstA == PIPE_BLENDFACTOR_INV_SRC_ALPHA ||
76 dstA == PIPE_BLENDFACTOR_ONE);
80 unsigned dstRGB, unsigned dstA)
93 (dstA == PIPE_BLENDFACTOR_SRC_COLOR ||
94 dstA == PIPE_BLENDFACTOR_SRC_ALPHA ||
95 dstA == PIPE_BLENDFACTOR_ONE);
99 unsigned dstRGB, unsigned dstA)
110 (dstA == PIPE_BLENDFACTOR_ONE)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_state.c 59 unsigned dstRGB, unsigned dstA)
74 (dstA == PIPE_BLENDFACTOR_INV_SRC_COLOR ||
75 dstA == PIPE_BLENDFACTOR_INV_SRC_ALPHA ||
76 dstA == PIPE_BLENDFACTOR_ONE);
80 unsigned dstRGB, unsigned dstA)
93 (dstA == PIPE_BLENDFACTOR_SRC_COLOR ||
94 dstA == PIPE_BLENDFACTOR_SRC_ALPHA ||
95 dstA == PIPE_BLENDFACTOR_ONE);
99 unsigned dstRGB, unsigned dstA)
110 (dstA == PIPE_BLENDFACTOR_ONE)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
evergreen_state.c 737 unsigned dstA = state->rt[j].alpha_dst_factor;
748 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
752 blend_cntl[i] |= S_028780_ALPHA_DESTBLEND(r600_translate_blend_factor(dstA));
    [all...]
r600_state.c 755 unsigned dstA = state->rt[j].alpha_dst_factor;
765 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
769 bc |= S_028804_ALPHA_DESTBLEND(r600_translate_blend_factor(dstA));
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
si_state.c 166 unsigned dstA = state->rt[j].alpha_dst_factor;
183 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
187 blend_cntl |= S_028780_ALPHA_DESTBLEND(si_translate_blend_factor(dstA));
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkXfermode.cpp 765 SkAlpha dstA = dst[i];
767 (SkPMColor)(dstA << SK_A32_SHIFT)));
769 A = SkAlphaBlend(A, dstA, SkAlpha255To256(a));
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
evergreen_state.c 737 unsigned dstA = state->rt[j].alpha_dst_factor;
748 if (srcA != srcRGB || dstA != dstRGB || eqA != eqRGB) {
752 blend_cntl[i] |= S_028780_ALPHA_DESTBLEND(r600_translate_blend_factor(dstA));
    [all...]

Completed in 715 milliseconds

1 2