Searched defs:effect (Results 26 - 50 of 61) sorted by relevance

123

/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
H A DEmitterPointShape.java32 package com.jme3.effect.shapes;
H A DEmitterSphereShape.java32 package com.jme3.effect.shapes;
H A DEmitterBoxShape.java32 package com.jme3.effect.shapes;
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
H A DSmoothFilter.java37 private float effect; field in class:SmoothFilter
47 public void setEffect(float effect) { argument
48 this.effect = effect;
52 return this.effect;
74 retval[idx] = this.effect * n / (4 * this.radius * (this.radius + 1) + 1) + (1 - this.effect) * data[idx];
/external/webkit/Source/WebCore/dom/
H A DClipboard.cpp128 void Clipboard::setDropEffect(const String &effect) argument
134 if (effect != "none" && effect != "copy" && effect != "link" && effect != "move")
138 m_dropEffect = effect;
141 void Clipboard::setEffectAllowed(const String &effect) argument
146 if (dragOpFromIEOp(effect) == DragOperationPrivate) {
158 m_effectAllowed = effect;
/external/webkit/Source/WebCore/svg/
H A DSVGFEComponentTransferElement.cpp104 RefPtr<FilterEffect> effect = FEComponentTransfer::create(filter, red, green, blue, alpha); local
105 effect->inputEffects().append(input1);
106 return effect.release();
H A DSVGFEFloodElement.cpp44 bool SVGFEFloodElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
50 FEFlood* flood = static_cast<FEFlood*>(effect);
H A DSVGFEBlendElement.cpp71 bool SVGFEBlendElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
73 FEBlend* blend = static_cast<FEBlend*>(effect);
136 RefPtr<FilterEffect> effect = FEBlend::create(filter, static_cast<BlendModeType>(mode()));
137 FilterEffectVector& inputEffects = effect->inputEffects();
141 return effect.release();
H A DSVGFEColorMatrixElement.cpp72 bool SVGFEColorMatrixElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
74 FEColorMatrix* colorMatrix = static_cast<FEColorMatrix*>(effect);
167 RefPtr<FilterEffect> effect = FEColorMatrix::create(filter, filterType, filterValues); local
168 effect->inputEffects().append(input1);
169 return effect.release();
H A DSVGFECompositeElement.cpp85 bool SVGFECompositeElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
87 FEComposite* composite = static_cast<FEComposite*>(effect);
179 RefPtr<FilterEffect> effect = FEComposite::create(filter, static_cast<CompositeOperationType>(_operator()),
181 FilterEffectVector& inputEffects = effect->inputEffects();
185 return effect.release();
H A DSVGFEDiffuseLightingElement.cpp87 bool SVGFEDiffuseLightingElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
89 FEDiffuseLighting* diffuseLighting = static_cast<FEDiffuseLighting*>(effect);
211 RefPtr<FilterEffect> effect = FEDiffuseLighting::create(filter, color, surfaceScale(), diffuseConstant(), local
213 effect->inputEffects().append(input1);
214 return effect.release();
H A DSVGFEDisplacementMapElement.cpp82 bool SVGFEDisplacementMapElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
84 FEDisplacementMap* displacementMap = static_cast<FEDisplacementMap*>(effect);
167 RefPtr<FilterEffect> effect = FEDisplacementMap::create(filter, static_cast<ChannelSelectorType>(xChannelSelector()),
169 FilterEffectVector& inputEffects = effect->inputEffects();
173 return effect.release();
H A DSVGFEMorphologyElement.cpp89 bool SVGFEMorphologyElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
91 FEMorphology* morphology = static_cast<FEMorphology*>(effect);
163 RefPtr<FilterEffect> effect = FEMorphology::create(filter, static_cast<MorphologyOperatorType>(_operator()), xRadius, yRadius);
164 effect->inputEffects().append(input1);
165 return effect.release();
H A DSVGFESpecularLightingElement.cpp92 bool SVGFESpecularLightingElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
94 FESpecularLighting* specularLighting = static_cast<FESpecularLighting*>(effect);
223 RefPtr<FilterEffect> effect = FESpecularLighting::create(filter, color, surfaceScale(), specularConstant(), local
225 effect->inputEffects().append(input1);
226 return effect.release();
H A DSVGFETurbulenceElement.cpp92 bool SVGFETurbulenceElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
94 FETurbulence* turbulence = static_cast<FETurbulence*>(effect);
H A DSVGFEConvolveMatrixElement.cpp131 bool SVGFEConvolveMatrixElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
133 FEConvolveMatrix* convolveMatrix = static_cast<FEConvolveMatrix*>(effect);
251 RefPtr<FilterEffect> effect = FEConvolveMatrix::create(filter, local
255 effect->inputEffects().append(input1);
256 return effect.release();
/external/webkit/Source/WebCore/svg/graphics/filters/
H A DSVGFilterBuilder.h42 void add(const AtomicString& id, RefPtr<FilterEffect> effect);
49 inline FilterEffectSet& effectReferences(FilterEffect* effect) argument
52 ASSERT(m_effectReferences.contains(effect));
53 return m_effectReferences.find(effect)->second;
75 // which depends on the key filter effect.
/external/chromium/chrome/browser/tab_contents/
H A Dweb_drop_target_win.cc31 // A helper method for getting the preferred drop effect.
32 DWORD GetPreferredDropEffect(DWORD effect) { argument
33 if (effect & DROPEFFECT_COPY)
35 if (effect & DROPEFFECT_LINK)
37 if (effect & DROPEFFECT_MOVE)
53 DWORD OnDragEnter(IDataObject* data_object, DWORD effect) { argument
55 GetPreferredDropEffect(effect) : DROPEFFECT_NONE;
58 DWORD OnDragOver(IDataObject* data_object, DWORD effect) { argument
60 GetPreferredDropEffect(effect) : DROPEFFECT_NONE;
66 DWORD OnDrop(IDataObject* data_object, DWORD effect) { argument
188 OnDrop(IDataObject* data_object, DWORD key_state, POINT cursor_position, DWORD effect) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/effect/influencers/
H A DDefaultParticleInfluencer.java1 package com.jme3.effect.influencers;
3 import com.jme3.effect.Particle;
4 import com.jme3.effect.shapes.EmitterShape;
H A DNewtonianParticleInfluencer.java1 package com.jme3.effect.influencers;
3 import com.jme3.effect.Particle;
4 import com.jme3.effect.shapes.EmitterShape;
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DBombControl.java18 import com.jme3.effect.ParticleEmitter;
19 import com.jme3.effect.ParticleMesh.Type;
20 import com.jme3.effect.shapes.EmitterSphereShape;
40 private ParticleEmitter effect; field in class:BombControl
67 effect = new ParticleEmitter("Flame", Type.Triangle, 32 * COUNT_FACTOR);
68 effect.setSelectRandomImage(true);
69 effect.setStartColor(new ColorRGBA(1f, 0.4f, 0.05f, (float) (1f / COUNT_FACTOR_F)));
70 effect.setEndColor(new ColorRGBA(.4f, .22f, .12f, 0f));
71 effect.setStartSize(1.3f);
72 effect
[all...]
H A DTestWalkingChar.java48 import com.jme3.effect.ParticleEmitter;
49 import com.jme3.effect.ParticleMesh.Type;
50 import com.jme3.effect.shapes.EmitterSphereShape;
110 ParticleEmitter effect; field in class:TestWalkingChar
209 effect = new ParticleEmitter("Flame", Type.Triangle, 32 * COUNT_FACTOR);
210 effect.setSelectRandomImage(true);
211 effect.setStartColor(new ColorRGBA(1f, 0.4f, 0.05f, (float) (1f / COUNT_FACTOR_F)));
212 effect.setEndColor(new ColorRGBA(.4f, .22f, .12f, 0f));
213 effect.setStartSize(1.3f);
214 effect
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/effect/
H A DTestExplosionEffect.java33 package jme3test.effect;
36 import com.jme3.effect.ParticleEmitter;
37 import com.jme3.effect.ParticleMesh.Type;
38 import com.jme3.effect.shapes.EmitterSphereShape;
262 // rewind the effect
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebDragClient.cpp146 DWORD effect = DROPEFFECT_NONE; local
152 hr = uiPrivate->doDragDrop(m_webView, dataObject.get(), source.get(), okEffect, &effect);
155 hr = DoDragDrop(dataObject.get(), source.get(), okEffect, &effect);
159 if (effect & DROPEFFECT_COPY)
161 else if (effect & DROPEFFECT_LINK)
163 else if (effect & DROPEFFECT_MOVE)
/external/chromium/chrome/browser/ui/views/tab_contents/
H A Dtab_contents_drag_win.cc308 DWORD effect; local
310 web_drag_utils_win::WebDragOpMaskToWinDragOpMask(ops), &effect); local
315 drag_source_->set_effect(effect);

Completed in 173 milliseconds

123