Searched refs:effect (Results 1 - 25 of 106) sorted by relevance

12345

/external/jmonkeyengine/engine/src/core/com/jme3/effect/influencers/
H A DParticleInfluencer.java1 package com.jme3.effect.influencers;
3 import com.jme3.effect.Particle;
4 import com.jme3.effect.ParticleEmitter;
5 import com.jme3.effect.shapes.EmitterShape;
H A DEmptyParticleInfluencer.java1 package com.jme3.effect.influencers;
3 import com.jme3.effect.Particle;
4 import com.jme3.effect.shapes.EmitterShape;
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/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/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/core/com/jme3/effect/
H A DParticle.java33 package com.jme3.effect;
H A DParticleComparator.java33 package com.jme3.effect;
H A DParticleMesh.java33 package com.jme3.effect;
/external/jmonkeyengine/engine/src/core/com/jme3/effect/shapes/
H A DEmitterShape.java32 package com.jme3.effect.shapes;
H A DEmitterMeshConvexHullShape.java1 package com.jme3.effect.shapes;
/external/jmonkeyengine/engine/src/test/jme3test/effect/
H A DTestParticleExportingCloning.java33 package jme3test.effect;
36 import com.jme3.effect.ParticleEmitter;
37 import com.jme3.effect.ParticleMesh.Type;
38 import com.jme3.effect.shapes.EmitterSphereShape;
H A DTestPointSprite.java33 package jme3test.effect;
36 import com.jme3.effect.ParticleEmitter;
37 import com.jme3.effect.ParticleMesh.Type;
38 import com.jme3.effect.shapes.EmitterBoxShape;
H A DTestMovingParticle.java32 package jme3test.effect;
35 import com.jme3.effect.ParticleEmitter;
36 import com.jme3.effect.ParticleMesh.Type;
H A DTestSoftParticles.java5 package jme3test.effect;
8 import com.jme3.effect.ParticleEmitter;
9 import com.jme3.effect.ParticleMesh;
10 import com.jme3.effect.shapes.EmitterSphereShape;
/external/v8/src/
H A Deffects.h19 // An effect can either be definite, if the write is known to have taken place,
25 // effect cancels out any previous effect upon sequencing. A possible effect
26 // merges into a previous effect, i.e., type bounds are merged. Alternative
27 // composition always merges bounds. It yields a possible effect if at least
38 // The unknown effect.
90 Effect effect = Lookup(var); local
91 return effect.modality == Effect::DEFINITE
92 ? effect
96 Seq(Var var, Effect effect) argument
110 Alt(Var var, Effect effect) argument
138 Call(Var var, Effect effect) argument
144 Call(Var var, Effect effect) argument
150 Call(Var var, Effect effect) argument
163 Call(Var var, Effect effect) argument
[all...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/particles/
H A DParticlesHelper.java3 import com.jme3.effect.ParticleEmitter;
4 import com.jme3.effect.ParticleMesh.Type;
5 import com.jme3.effect.influencers.EmptyParticleInfluencer;
6 import com.jme3.effect.influencers.NewtonianParticleInfluencer;
7 import com.jme3.effect.influencers.ParticleInfluencer;
8 import com.jme3.effect.shapes.EmitterMeshConvexHullShape;
9 import com.jme3.effect.shapes.EmitterMeshFaceShape;
10 import com.jme3.effect.shapes.EmitterMeshVertexShape;
/external/skia/src/gpu/
H A DGrPipelineBuilder.h68 const GrFragmentProcessor* addColorProcessor(const GrFragmentProcessor* effect) { argument
69 SkASSERT(effect);
70 SkNEW_APPEND_TO_TARRAY(&fColorStages, GrFragmentStage, (effect));
72 return effect;
75 const GrFragmentProcessor* addCoverageProcessor(const GrFragmentProcessor* effect) { argument
76 SkASSERT(effect);
77 SkNEW_APPEND_TO_TARRAY(&fCoverageStages, GrFragmentStage, (effect));
79 return effect;
216 * Changing the clip has the side-effect of possibly zeroing
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_mixer.c117 /* need to clear other side-chain effect buffers (chorus & reverb) */
143 if (pEASData->effectsModules[EAS_MODULE_MAXIMIZER].effect)
179 /* enhancer effect */
181 (*pEASData->effectsModules[EAS_MODULE_ENHANCER].effect->pfProcess)
189 /* graphic EQ effect */
191 (*pEASData->effectsModules[EAS_MODULE_GRAPHIC_EQ].effect->pfProcess)
199 /* compressor effect */
201 (*pEASData->effectsModules[EAS_MODULE_COMPRESSOR].effect->pfProcess)
214 (*pEASData->effectsModules[EAS_MODULE_WOW].effect->pfProcess)
222 /* ToneControlEQ effect */
[all...]
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_mixer.c117 /* need to clear other side-chain effect buffers (chorus & reverb) */
143 if (pEASData->effectsModules[EAS_MODULE_MAXIMIZER].effect)
179 /* enhancer effect */
181 (*pEASData->effectsModules[EAS_MODULE_ENHANCER].effect->pfProcess)
189 /* graphic EQ effect */
191 (*pEASData->effectsModules[EAS_MODULE_GRAPHIC_EQ].effect->pfProcess)
199 /* compressor effect */
201 (*pEASData->effectsModules[EAS_MODULE_COMPRESSOR].effect->pfProcess)
214 (*pEASData->effectsModules[EAS_MODULE_WOW].effect->pfProcess)
222 /* ToneControlEQ effect */
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_mixer.c117 /* need to clear other side-chain effect buffers (chorus & reverb) */
143 if (pEASData->effectsModules[EAS_MODULE_MAXIMIZER].effect)
179 /* enhancer effect */
181 (*pEASData->effectsModules[EAS_MODULE_ENHANCER].effect->pfProcess)
189 /* graphic EQ effect */
191 (*pEASData->effectsModules[EAS_MODULE_GRAPHIC_EQ].effect->pfProcess)
199 /* compressor effect */
201 (*pEASData->effectsModules[EAS_MODULE_COMPRESSOR].effect->pfProcess)
214 (*pEASData->effectsModules[EAS_MODULE_WOW].effect->pfProcess)
222 /* ToneControlEQ effect */
[all...]
/external/valgrind/none/tests/s390x/
H A Dex.stdout.exp8 ------- EX 0,... has no effect (writes out target)
H A Dexrl.stdout.exp8 ------- EXRL 0,... has no effect (writes out target)
/external/v8/src/compiler/
H A Dnode-properties-inl.h113 // edges maybe need to be marked as value/effect/control.
159 inline void NodeProperties::ReplaceEffectInput(Node* node, Node* effect, argument
162 return node->ReplaceInput(FirstEffectIndex(node) + index, effect);
176 // Replace value uses of {node} with {value} and effect uses of {node} with
177 // {effect}. If {effect == NULL}, then use the effect input to {node}.
179 Node* effect) {
181 if (effect == NULL && OperatorProperties::HasEffectInput(node->op())) {
182 effect
178 ReplaceWithValue(Node* node, Node* value, Node* effect) argument
[all...]

Completed in 925 milliseconds

12345