HomeSort by relevance Sort by last modified time
    Searched full:blend (Results 301 - 325 of 948) sorted by null

<<11121314151617181920>>

  /external/opencv3/doc/py_tutorials/py_core/py_image_arithmetics/
py_image_arithmetics.markdown 46 Here I took two images to blend them together. First image is given a weight of 0.7 and second image
73 I want to put OpenCV logo above an image. If I add two images, it will change color. If I blend it,
  /external/opencv3/modules/cudaimgproc/src/cuda/
blend.cu 49 namespace blend
117 } // namespace blend
  /frameworks/base/libs/hwui/
Glop.h 166 struct Blend {
169 } blend; member in struct:android::uirenderer::Glop
  /frameworks/rs/driver/
rsdProgramStore.cpp 114 rsc->setError(RS_ERROR_FATAL_DRIVER, "Unknown blend src mode.");
144 rsc->setError(RS_ERROR_FATAL_DRIVER, "Unknown blend dst mode.");
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
IPTestList.java 64 INTRINSICS_BLEND ("Intrinsics Blend", INTRINSIC, 105.f),
163 return new Blend();
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
IPTestListJB.java 64 INTRINSICS_BLEND ("Intrinsics Blend", INTRINSIC, 105.f),
165 return new Blend();
  /external/mesa3d/src/gallium/drivers/r300/
r300_state.c 61 /* If the blend equation is ADD or REVERSE_SUBTRACT,
82 /* If the blend equation is ADD or REVERSE_SUBTRACT,
101 /* If the blend equation is ADD or REVERSE_SUBTRACT,
116 /* If the blend equation is ADD or REVERSE_SUBTRACT,
131 /* If the blend equation is ADD or REVERSE_SUBTRACT,
154 /* If the blend equation is ADD or REVERSE_SUBTRACT,
218 /* Create a new blend state based on the CSO blend state.
220 * This encompasses alpha blending, logic/raster ops, and blend dithering. */
225 struct r300_blend_state* blend = CALLOC_STRUCT(r300_blend_state) local
    [all...]
  /external/mesa3d/src/gallium/tests/graw/
fs-test.c 486 struct pipe_blend_state blend; local
488 memset(&blend, 0, sizeof blend);
489 blend.rt[0].colormask = PIPE_MASK_RGBA;
490 handle = ctx->create_blend_state(ctx, &blend);
gs-test.c 550 struct pipe_blend_state blend; local
552 memset(&blend, 0, sizeof blend);
553 blend.rt[0].colormask = PIPE_MASK_RGBA;
554 handle = ctx->create_blend_state(ctx, &blend);
  /external/mesa3d/src/mesa/x86/
mmx_blend.S 264 /* Blend transparency function
284 /* Blend add function
307 /* Blend min function
339 /* Blend max function
371 /* Blend modulate function
  /packages/apps/LegacyCamera/jni/
feature_mos_jni.cpp 28 #include "mosaic/Blend.h"
62 //int blendingType = Blend::BLEND_TYPE_FULL;
63 //int blendingType = Blend::BLEND_TYPE_CYLPAN;
64 int blendingType = Blend::BLEND_TYPE_HORZ;
65 int stripType = Blend::STRIP_TYPE_THIN;
  /frameworks/native/opengl/tests/hwc/
hwcCommit.cpp 171 int32_t blend; member in class:Rectangle
559 // TODO: make measurments with background blend other than
561 // background blend of HWC_BLENDING_NONE, with the
562 // blend type of the foregound being varied.
589 testPrintI("overlapping blend: none");
598 testPrintI("overlapping blend: premult");
607 testPrintI("overlapping blend: coverage");
702 // For each of the blend types
706 rect.blend = id;
    [all...]
  /external/skia/src/gpu/glsl/
GrGLSLBlend.cpp 11 // Advanced (non-coeff) blend helpers
368 // Porter-Duff blend helper
409 SkFAIL("Unsupported Blend Coeff");
424 // append src blend
427 // append dst blend
473 // append src blend
476 // append dst blend
  /external/vulkan-validation-layers/libs/glm/gtx/
compatibility.hpp 64 template <typename T> GLM_FUNC_QUALIFIER T lerp(T x, T y, T a){return mix(x, y, a);} //!< \brief Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
65 template <typename T, precision P> GLM_FUNC_QUALIFIER detail::tvec2<T, P> lerp(const detail::tvec2<T, P>& x, const detail::tvec2<T, P>& y, T a){return mix(x, y, a);} //!< \brief Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
67 template <typename T, precision P> GLM_FUNC_QUALIFIER detail::tvec3<T, P> lerp(const detail::tvec3<T, P>& x, const detail::tvec3<T, P>& y, T a){return mix(x, y, a);} //!< \brief Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
68 template <typename T, precision P> GLM_FUNC_QUALIFIER detail::tvec4<T, P> lerp(const detail::tvec4<T, P>& x, const detail::tvec4<T, P>& y, T a){return mix(x, y, a);} //!< \brief Returns x * (1.0 - a) + y * a, i.e., the linear blend of x and y using the floating-point value a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
69 template <typename T, precision P> GLM_FUNC_QUALIFIER detail::tvec2<T, P> lerp(const detail::tvec2<T, P>& x, const detail::tvec2<T, P>& y, const detail::tvec2<T, P>& a){return mix(x, y, a);} //!< \brief Returns the component-wise result of x * (1.0 - a) + y * a, i.e., the linear blend of x and y using vector a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
70 template <typename T, precision P> GLM_FUNC_QUALIFIER detail::tvec3<T, P> lerp(const detail::tvec3<T, P>& x, const detail::tvec3<T, P>& y, const detail::tvec3<T, P>& a){return mix(x, y, a);} //!< \brief Returns the component-wise result of x * (1.0 - a) + y * a, i.e., the linear blend of x and y using vector a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
71 template <typename T, precision P> GLM_FUNC_QUALIFIER detail::tvec4<T, P> lerp(const detail::tvec4<T, P>& x, const detail::tvec4<T, P>& y, const detail::tvec4<T, P>& a){return mix(x, y, a);} //!< \brief Returns the component-wise result of x * (1.0 - a) + y * a, i.e., the linear blend of x and y using vector a. The value for a is not restricted to the range [0, 1]. (From GLM_GTX_compatibility)
  /external/mesa3d/src/mesa/swrast/
s_triangle.c 324 #define BLEND \
430 SPAN_NEAREST(NEAREST_RGB;BLEND,3);
449 SPAN_NEAREST(NEAREST_RGBA;BLEND,4);
479 SPAN_LINEAR(LINEAR_RGB;BLEND,3);
498 SPAN_LINEAR(LINEAR_RGBA;BLEND,4);
702 SPAN_NEAREST(NEAREST_RGB;BLEND,3);
721 SPAN_NEAREST(NEAREST_RGBA;BLEND,4);
749 SPAN_LINEAR(LINEAR_RGB;BLEND,3);
768 SPAN_LINEAR(LINEAR_RGBA;BLEND,4);
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/type1/
t1gload.c 173 face->blend,
238 face->blend,
334 face->blend,
  /external/llvm/test/CodeGen/X86/
vec_uint_to_fp.ll 54 ; Currently we commute the arguments of the first blend, but this could be
55 ; improved to match the lowering of the second blend.
132 ; The operands of the blend are inverted because we reuse xmm1
  /external/pdfium/third_party/freetype/src/type1/
t1gload.c 173 face->blend,
238 face->blend,
334 face->blend,
  /external/skia/include/core/
SkXfermode.h 88 // Following blend modes are defined in the CSS Compositing standard:
203 /** Used by the SkXfermodeImageFilter to blend two colors via a GrFragmentProcessor.
207 the output of the blend is simply the src color.
  /developers/build/prebuilts/gradle/DrawableTinting/Application/src/main/res/layout/
tinting_fragment.xml 62 <!-- Blend mode -->
  /developers/samples/android/ui/DrawableTinting/Application/src/main/res/layout/
tinting_fragment.xml 62 <!-- Blend mode -->
  /development/samples/browseable/DrawableTinting/res/layout/
tinting_fragment.xml 62 <!-- Blend mode -->
  /external/freetype/include/internal/
t1types.h 209 PS_Blend blend; member in struct:T1_FaceRec_
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/include/freetype/internal/
t1types.h 209 PS_Blend blend; member in struct:T1_FaceRec_
  /external/libgdx/gdx/jni/gdx2d/
gdx2d.h 73 JNIEXPORT void gdx2d_set_blend (uint32_t blend);

Completed in 90 milliseconds

<<11121314151617181920>>