| /external/chromium_org/third_party/skia/src/gpu/gl/ |
| GrGLProgramEffects.cpp | 98 const GrCoordTransform& coordTransform = (*drawEffect.effect())->coordTransform(transformIdx); 118 const GrCoordTransform& coordTransform = (*drawEffect.effect())->coordTransform(transformIdx); 158 int numTransforms = (*drawEffect.effect())->numTransforms(); 161 const GrCoordTransform& coordTransform = (*drawEffect.effect())->coordTransform(t); 198 int numTextures = (*drawEffect.effect())->numTextures(); 200 const GrTextureAccess& access = (*drawEffect.effect())->textureAccess(t); 217 const GrEffectRef& effect, 220 int numTextures = effect->numTextures(); 229 (samplers[t].fUniform, effect->textureAccess(t))); 247 void GrGLProgramEffects::bindTextures(GrGpuGL* gpu, const GrEffectRef& effect, int effectIdx) 269 const GrEffectRef& effect = *stage.getEffect(); local 479 const GrEffectRef& effect = *stage.getEffect(); local [all...] |
| GrGLProgramDesc.cpp | 24 const GrEffectRef& effect = *stage.getEffect(); local 25 const GrBackendEffectFactory& factory = effect->getFactory(); 27 if (effect->willReadDstColor()) { 30 if (effect->willReadFragmentPosition()) { 33 if (effect->hasVertexCode()) { 65 const GrEffect* effect = drawState.getColorStage(firstEffectiveColorStage).getEffect()->get(); local 66 inputColorIsUsed = effect->willUseInputColor(); 76 const GrEffect* effect = drawState.getCoverageStage(firstEffectiveCoverageStage).getEffect()->get(); local 77 inputCoverageIsUsed = effect->willUseInputColor(); 88 // we only need the local coords if we're actually going to generate effect cod [all...] |
| /external/chromium_org/ui/views/widget/desktop_aura/ |
| desktop_drop_target_win.cc | 38 DWORD effect) { 43 Translate(data_object, key_state, position, effect, &data, &event, &delegate); 51 DWORD effect) { 56 Translate(data_object, key_state, position, effect, &data, &event, &delegate); 69 DWORD effect) { 74 Translate(data_object, key_state, position, effect, &data, &event, &delegate); 93 DWORD effect, 126 ui::DragDropTypes::DropEffectToDragOperation(effect)));
|
| /external/skia/src/gpu/gl/ |
| GrGLProgramEffects.cpp | 98 const GrCoordTransform& coordTransform = (*drawEffect.effect())->coordTransform(transformIdx); 118 const GrCoordTransform& coordTransform = (*drawEffect.effect())->coordTransform(transformIdx); 158 int numTransforms = (*drawEffect.effect())->numTransforms(); 161 const GrCoordTransform& coordTransform = (*drawEffect.effect())->coordTransform(t); 198 int numTextures = (*drawEffect.effect())->numTextures(); 200 const GrTextureAccess& access = (*drawEffect.effect())->textureAccess(t); 217 const GrEffectRef& effect, 220 int numTextures = effect->numTextures(); 229 (samplers[t].fUniform, effect->textureAccess(t))); 247 void GrGLProgramEffects::bindTextures(GrGpuGL* gpu, const GrEffectRef& effect, int effectIdx) 269 const GrEffectRef& effect = *stage.getEffect(); local 479 const GrEffectRef& effect = *stage.getEffect(); local [all...] |
| GrGLProgramDesc.cpp | 24 const GrEffectRef& effect = *stage.getEffect(); local 25 const GrBackendEffectFactory& factory = effect->getFactory(); 27 if (effect->willReadDstColor()) { 30 if (effect->willReadFragmentPosition()) { 33 if (effect->hasVertexCode()) { 65 const GrEffect* effect = drawState.getColorStage(firstEffectiveColorStage).getEffect()->get(); local 66 inputColorIsUsed = effect->willUseInputColor(); 76 const GrEffect* effect = drawState.getCoverageStage(firstEffectiveCoverageStage).getEffect()->get(); local 77 inputCoverageIsUsed = effect->willUseInputColor(); 88 // we only need the local coords if we're actually going to generate effect cod [all...] |
| /frameworks/av/media/libeffects/downmix/ |
| Android.mk | 3 # Multichannel downmix effect library
|
| /frameworks/base/media/mca/effect/java/android/media/effect/ |
| SizeChangeEffect.java | 17 package android.media.effect; 20 import android.media.effect.EffectContext; 23 * Effect subclass for effects based on a single Filter with output size differnet 25 * to obtain an Effect implementation.
|
| EffectFactory.java | 18 package android.media.effect; 25 * creating a certain effect, the application should confirm that the effect is supported on this 33 "android.media.effect.effects.", // Default effect package 58 "android.media.effect.effects.BrightnessEffect"; 73 "android.media.effect.effects.ContrastEffect"; 87 "android.media.effect.effects.FisheyeEffect"; 92 * background visible before the effect becomes active. The effect will wai 506 Effect effect = null; local [all...] |
| FilterGraphEffect.java | 17 package android.media.effect; 23 import android.media.effect.FilterEffect; 24 import android.media.effect.EffectContext; 30 * Effect subclass for effects based on a single Filter. Subclasses need only invoke the 31 * constructor with the correct arguments to obtain an Effect implementation. 48 * @param name The name of this effect (used to create it in the EffectFactory). 73 throw new RuntimeException("Could not setup effect", e); 77 throw new RuntimeException("Could not setup effect"); 91 throw new RuntimeException("Internal error applying effect"); 97 throw new RuntimeException("Internal error applying effect"); [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/svg/ |
| SVGFETileElement.cpp | 90 RefPtr<FilterEffect> effect = FETile::create(filter); 91 effect->inputEffects().append(input1); 92 return effect.release();
|
| SVGFEComponentTransferElement.cpp | 94 RefPtr<FilterEffect> effect = FEComponentTransfer::create(filter, red, green, blue, alpha); local 95 effect->inputEffects().append(input1); 96 return effect.release();
|
| SVGFEGaussianBlurElement.cpp | 108 RefPtr<FilterEffect> effect = FEGaussianBlur::create(filter, stdDeviationX()->currentValue()->value(), stdDeviationY()->currentValue()->value()); 109 effect->inputEffects().append(input1); 110 return effect.release();
|
| SVGFEOffsetElement.cpp | 102 RefPtr<FilterEffect> effect = FEOffset::create(filter, m_dx->currentValue()->value(), m_dy->currentValue()->value()); 103 effect->inputEffects().append(input1); 104 return effect.release();
|
| SVGFEFloodElement.cpp | 39 bool SVGFEFloodElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) 45 FEFlood* flood = static_cast<FEFlood*>(effect);
|
| /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/ |
| SVGFilterBuilder.h | 48 inline FilterEffectSet& effectReferences(FilterEffect* effect) 51 ASSERT(m_effectReferences.contains(effect)); 52 return m_effectReferences.find(effect)->value; 74 // which depends on the key filter effect.
|
| /external/chromium_org/third_party/WebKit/Source/core/rendering/ |
| FilterEffectRenderer.cpp | 99 RefPtr<FilterEffect> effect; local 103 effect = ReferenceFilterBuilder::build(this, renderer, previousEffect.get(), toReferenceFilterOperation(filterOperation)); 130 effect = FEColorMatrix::create(this, FECOLORMATRIX_TYPE_MATRIX, inputParameters); 157 effect = FEColorMatrix::create(this, FECOLORMATRIX_TYPE_MATRIX, inputParameters); 163 effect = FEColorMatrix::create(this, FECOLORMATRIX_TYPE_SATURATE, inputParameters); 169 effect = FEColorMatrix::create(this, FECOLORMATRIX_TYPE_HUEROTATE, inputParameters); 182 effect = FEComponentTransfer::create(this, transferFunction, transferFunction, transferFunction, nullFunction); 194 effect = FEComponentTransfer::create(this, nullFunction, nullFunction, nullFunction, transferFunction); 204 effect = FEComponentTransfer::create(this, transferFunction, transferFunction, transferFunction, nullFunction); 215 effect = FEComponentTransfer::create(this, transferFunction, transferFunction, transferFunction, nullFunc (…) 293 RefPtr<FilterEffect> effect = lastEffect(); local [all...] |
| /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
| FETile.cpp | 97 static FloatRect getRect(FilterEffect* effect) 99 FloatRect result = effect->filter()->filterRegion(); 100 FloatRect boundaries = effect->effectBoundaries(); 101 if (effect->hasX()) 103 if (effect->hasY()) 105 if (effect->hasWidth()) 107 if (effect->hasHeight())
|
| /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
| ReferenceFilterBuilder.cpp | 160 RefPtr<FilterEffect> effect = effectElement->build(builder.get(), parentFilter); local 161 if (!effect) 164 effectElement->setStandardAttributes(effect.get()); 165 effect->setEffectBoundaries(SVGLengthContext::resolveRectangle<SVGFilterPrimitiveStandardAttributes>(effectElement, filterElement.primitiveUnits()->currentValue()->enumValue(), parentFilter->sourceImageRect())); 168 effect->setOperatingColorSpace(colorSpace); 169 builder->add(AtomicString(effectElement->result()->currentValue()->value()), effect);
|
| /external/chromium_org/third_party/WebKit/Source/core/animation/ |
| InertAnimation.h | 44 AnimationEffect* effect() const { return m_effect.get(); } function in class:WebCore::FINAL
|
| /external/chromium_org/third_party/skia/include/effects/ |
| SkMagnifierImageFilter.h | 31 virtual bool asNewEffect(GrEffectRef** effect, GrTexture* texture, const SkMatrix& matrix, const SkIRect& bounds) const SK_OVERRIDE;
|
| /external/chromium_org/ui/base/dragdrop/ |
| drag_source_win.h | 36 HRESULT __stdcall GiveFeedback(DWORD effect);
|
| /external/skia/include/effects/ |
| SkMagnifierImageFilter.h | 31 virtual bool asNewEffect(GrEffectRef** effect, GrTexture* texture, const SkMatrix& matrix, const SkIRect& bounds) const SK_OVERRIDE;
|
| /packages/apps/LegacyCamera/src/com/android/camera/ui/ |
| IndicatorButton.java | 109 EffectSettingPopup effect = (EffectSettingPopup) inflater.inflate( local 111 effect.initialize(mPreference); 112 effect.setSettingChangedListener(this); 113 mPopup = effect;
|
| /cts/tests/tests/media/src/android/media/cts/ |
| AudioEffectTest.java | 111 // // Test case 1.0: test constructor from effect type and get effect ID 116 // //Test case 1.1: test constructor from effect uuid 126 //Test case 1.3: test getEnabled() failure when called on released effect 132 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_EQUALIZER, local 136 assertNotNull("could not create AudioEffect", effect); 137 effect.release(); 139 effect.getEnabled(); 147 fail("Effect library not loaded"); 173 //Test case 1.5: test auxiliary effect attachement on MediaPlaye 292 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_EQUALIZER, local 322 AudioEffect effect = new AudioEffect(AudioEffect.EFFECT_TYPE_EQUALIZER, local 594 AudioEffect effect = null; local 622 AudioEffect effect = null; local [all...] |
| /external/chromium_org/third_party/skia/src/effects/ |
| SkLumaColorFilter.cpp | 64 AutoEffectUnref effect(SkNEW(LumaColorFilterEffect)); 65 return CreateEffectRef(effect);
|