/external/deqp/modules/gles2/performance/ |
es2pBlendTests.cpp | 21 * \brief Blend performance tests. 124 : TestCaseGroup(context, "blend", "Blend Performance Tests") 145 // Single blend func, factor one.
|
/external/deqp/modules/gles3/performance/ |
es3pBlendTests.cpp | 21 * \brief Blend performance tests. 127 : TestCaseGroup(context, "blend", "Blend Performance Tests") 148 // Single blend func, factor one.
|
/external/llvm/test/CodeGen/X86/ |
commute-blend-avx2.ll | 60 %2 = call <8 x float> @llvm.x86.avx.blend.ps.256(<8 x float> %1, <8 x float> %a, i8 7) 67 declare <8 x float> @llvm.x86.avx.blend.ps.256(<8 x float>, <8 x float>, i8) nounwind readnone 82 %2 = call <4 x double> @llvm.x86.avx.blend.pd.256(<4 x double> %1, <4 x double> %a, i8 7) 89 declare <4 x double> @llvm.x86.avx.blend.pd.256(<4 x double>, <4 x double>, i8) nounwind readnone
|
/external/mesa3d/src/gallium/auxiliary/postprocess/ |
pp_program.h | 43 struct pipe_blend_state blend; member in struct:program
|
/external/opencv3/modules/cudaimgproc/test/ |
test_blend.cpp | 50 // Blend 79 PARAM_TEST_CASE(Blend, cv::cuda::DeviceInfo, cv::Size, MatType, UseRoi) 97 CUDA_TEST_P(Blend, Accuracy) 118 INSTANTIATE_TEST_CASE_P(CUDA_ImgProc, Blend, testing::Combine(
|
/external/skia/src/gpu/ |
GrPipeline.h | 75 * test than isEqual because it also considers blend barriers when the two batches' bounds 170 * Alter the program desc and inputs (attribs and processors) based on the blend optimization. 181 * the function may adjust the blend coefficients. After this function is called the src and dst 182 * blend coeffs will represent those used by backend API.
|
/frameworks/native/cmds/flatland/ |
Flatland.h | 58 Composer* blend();
|
/frameworks/native/opengl/tests/gl_perf/ |
filltest.cpp | 43 printf("\nvarColor, texCount, modulate, extraMath, texSize, blend, Mpps, DC60\n");
|
/packages/apps/LegacyCamera/jni/ |
Android.mk | 20 feature_mos/src/mosaic/Blend.cpp \
|
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
Mosaic.h | 28 #include "Blend.h" 42 int blendingType = Blend::BLEND_TYPE_CYLPAN; 43 int stripType = Blend::STRIP_TYPE_THIN; 207 Blend *blender;
|
Blend.cpp | 18 // Blend.cpp 19 // $Id: Blend.cpp,v 1.22 2011/06/24 04:22:14 mbansal Exp $ 24 #include "Blend.h" 30 #define LOG_TAG "BLEND" 32 Blend::Blend() 37 Blend::~Blend() 44 int Blend::initialize(int blendingType, int stripType, int frame_width, int frame_height) 80 void Blend::AlignToMiddleFrame(MosaicFrame **frames, int frames_size [all...] |
/prebuilts/misc/windows/sdl2/test/ |
testdraw2.c | 196 if (SDL_strcasecmp(argv[i], "--blend") == 0) { 201 } else if (SDL_strcasecmp(argv[i + 1], "blend") == 0) { 224 SDL_Log("Usage: %s %s [--blend none|blend|add|mod] [--cyclecolor] [--cyclealpha]\n",
|
/system/media/audio_utils/include/audio_utils/ |
conversion.h | 30 * In-place mono blend using the arithmetic average of the channels in each audio frame.
|
/external/webp/src/enc/ |
picture_tools.c | 144 // Blend color and remove transparency info 146 #define BLEND(V0, V1, ALPHA) \ 172 y_ptr[x] = BLEND(Y0, y_ptr[x], a_ptr[x]); 209 r = BLEND(red, r, alpha); 210 g = BLEND(green, g, alpha); 211 b = BLEND(blue, b, alpha); 223 #undef BLEND
|
/external/deqp/modules/gles31/functional/ |
es31fNegativeAdvancedBlendEquationTests.cpp | 21 * \brief Negative Advanced Blend Equation Tests 178 ctx.beginSection("GL_INVALID_OPERATION is generated if blending is enabled, and the blend qualifier is different from blend_support_all_equations and does not match the blend equation."); 244 ctx.beginSection("GL_NO_ERROR is generated if no advanced blend equations are used."); 270 {blend_qualifier_mismatch, "blend_qualifier_mismatch", "Test blend qualifier mismatch." },
|
/external/mesa3d/src/gallium/tests/graw/ |
graw_util.h | 153 struct pipe_blend_state blend; local 155 memset(&blend, 0, sizeof blend); 156 blend.rt[0].colormask = PIPE_MASK_RGBA; 157 handle = info->ctx->create_blend_state(info->ctx, &blend);
|
tri-gs.c | 237 struct pipe_blend_state blend; local 239 memset(&blend, 0, sizeof blend); 240 blend.rt[0].colormask = PIPE_MASK_RGBA; 241 handle = ctx->create_blend_state(ctx, &blend);
|
tri-instanced.c | 288 struct pipe_blend_state blend; local 290 memset(&blend, 0, sizeof blend); 291 blend.rt[0].colormask = PIPE_MASK_RGBA; 292 handle = ctx->create_blend_state(ctx, &blend);
|
/external/mesa3d/src/gallium/tests/trivial/ |
tri.c | 68 struct pipe_blend_state blend; member in struct:program 146 memset(&p->blend, 0, sizeof(p->blend)); 147 p->blend.rt[0].colormask = PIPE_MASK_RGBA; 252 cso_set_blend(p->cso, &p->blend);
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
i830_state.c | 223 * Blend, and Blending. It needs to be called from numerous places where we 224 * could change the LogicOp or Independant Alpha Blend without subsequent 277 * Sets both the blend equation (called "function" in i830 docs) and the 278 * blend function (called "factor" in i830 docs). This is done in a single 279 * function because some blend equations (i.e., \c GL_MIN and \c GL_MAX) 280 * change the interpretation of the blend function. 295 SRC_BLND_FACT(intel_translate_blend_factor(ctx->Color.Blend[0].SrcRGB)) 296 | DST_BLND_FACT(intel_translate_blend_factor(ctx->Color.Blend[0].DstRGB)); 298 switch (ctx->Color.Blend[0].EquationRGB) { 317 fprintf(stderr, "[%s:%u] Invalid RGB blend equation (0x%04x).\n" [all...] |
/external/skia/include/gpu/ |
GrCaps.h | 161 * Indicates the capabilities of the fixed function blend unit. 167 // SVG/PDF blend modes. Requires blend barriers. 168 kAdvancedCoherent_BlendEquationSupport, //<! Advanced blend equation support that does not 169 // require blend barriers, and permits overlap.
|
/external/skia/tests/ |
BlitRowTest.cpp | 139 bool blend = (k & 2) != 0; local 140 if (gSrcRec[j].fSrc != 0 && blend) { 146 paint.setAlpha(blend ? 0x80 : 0xFF); 150 SkDebugf("--- src index %d dither %d blend %d\n", j, dither, blend);
|
/frameworks/rs/cpp/ |
ScriptIntrinsics.cpp | 85 mRS->throwError(RS_ERROR_INVALID_ELEMENT, "Invalid element in blend"); 93 mRS->throwError(RS_ERROR_INVALID_ELEMENT, "Invalid element in blend"); 101 mRS->throwError(RS_ERROR_INVALID_ELEMENT, "Invalid element in blend"); 109 mRS->throwError(RS_ERROR_INVALID_ELEMENT, "Invalid element in blend"); 117 mRS->throwError(RS_ERROR_INVALID_ELEMENT, "Invalid element in blend"); 125 mRS->throwError(RS_ERROR_INVALID_ELEMENT, "Invalid element in blend"); 133 mRS->throwError(RS_ERROR_INVALID_ELEMENT, "Invalid element in blend"); 141 mRS->throwError(RS_ERROR_INVALID_ELEMENT, "Invalid element in blend"); 149 mRS->throwError(RS_ERROR_INVALID_ELEMENT, "Invalid element in blend"); 157 mRS->throwError(RS_ERROR_INVALID_ELEMENT, "Invalid element in blend"); [all...] |
/development/perftests/panorama/feature_mos/src/mosaic/ |
Blend.cpp | 18 // Blend.cpp 19 // $Id: Blend.cpp,v 1.22 2011/06/24 04:22:14 mbansal Exp $ 24 #include "Blend.h" 29 Blend::Blend() 34 Blend::~Blend() 41 int Blend::initialize(int blendingType, int stripType, int frame_width, int frame_height) 76 void Blend::AlignToMiddleFrame(MosaicFrame **frames, int frames_size) 95 int Blend::runBlend(MosaicFrame **oframes, MosaicFrame **rframes [all...] |
/external/deqp/modules/gles2/functional/ |
es2fBlendTests.cpp | 21 * \brief Blend tests. 219 // Log the blend parameters. 227 log << TestLog::Message << "Blend color = (" << paramSet.blendColor.x() << ", " << paramSet.blendColor.y() << ", " << paramSet.blendColor.z() << ", " << paramSet.blendColor.w() << ")" << TestLog::EndMessage; 299 : TestCaseGroup(context, "blend", "Blend tests") 343 // Test all blend equation, src blend function, dst blend function combinations. RGB and alpha modes are the same. 346 TestCaseGroup* group = new TestCaseGroup(m_context, "equation_src_func_dst_func", "Combinations of Blend Equations and Functions");
|