HomeSort by relevance Sort by last modified time
    Searched defs:oc (Results 51 - 75 of 96) sorted by null

1 23 4

  /external/jmonkeyengine/engine/src/core/com/jme3/material/
TechniqueDef.java 367 OutputCapsule oc = ex.getCapsule(this); local
368 oc.write(name, "name", null);
369 oc.write(vertName, "vertName", null);
370 oc.write(fragName, "fragName", null);
371 oc.write(shaderLang, "shaderLang", null);
372 oc.write(presetDefines, "presetDefines", null);
373 oc.write(lightMode, "lightMode", LightMode.Disable);
374 oc.write(shadowMode, "shadowMode", ShadowMode.Disable);
375 oc.write(renderState, "renderState", null);
376 oc.write(usesShaders, "usesShaders", false)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/post/
Filter.java 323 OutputCapsule oc = ex.getCapsule(this); local
324 oc.write(name, "name", "");
325 oc.write(enabled, "enabled", true);
FilterPostProcessor.java 472 OutputCapsule oc = ex.getCapsule(this); local
473 oc.write(numSamples, "numSamples", 0);
474 oc.writeSavableArrayList((ArrayList) filters, "filters", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
Uniform.java 72 OutputCapsule oc = ex.getCapsule(this); local
73 oc.write(varType, "varType", null);
74 oc.write(binding, "binding", null);
77 oc.write( ((Boolean)value).booleanValue(), "valueBoolean", false );
80 oc.write( ((Float)value).floatValue(), "valueFloat", 0);
83 oc.write( (FloatBuffer)value, "valueFloatArray", null);
86 oc.write( ((Integer)value).intValue(), "valueInt", 0);
89 oc.write( (Matrix3f)value, "valueMatrix3", null);
96 oc.write( (Matrix4f)value, "valueMatrix4", null);
99 oc.write( (Vector2f)value, "valueVector2", null)
    [all...]
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
BloomFilter.java 289 OutputCapsule oc = ex.getCapsule(this); local
290 oc.write(glowMode, "glowMode", GlowMode.Scene);
291 oc.write(blurScale, "blurScale", 1.5f);
292 oc.write(exposurePower, "exposurePower", 5.0f);
293 oc.write(exposureCutOff, "exposureCutOff", 0.0f);
294 oc.write(bloomIntensity, "bloomIntensity", 2.0f);
295 oc.write(downSamplingFactor, "downSamplingFactor", 1);
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/post/ssao/
SSAOFilter.java 308 OutputCapsule oc = ex.getCapsule(this); local
309 oc.write(sampleRadius, "sampleRadius", 5.1f);
310 oc.write(intensity, "intensity", 1.5f);
311 oc.write(scale, "scale", 0.2f);
312 oc.write(bias, "bias", 0.1f);
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
TerrainLodControl.java 197 OutputCapsule oc = ex.getCapsule(this); local
198 oc.write((Node)terrain, "terrain", null);
199 oc.write(lodCalculator, "lodCalculator", null);
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
Properties.java 316 OutputCapsule oc = ex.getCapsule(this); local
317 oc.write(name, "name", DEFAULT_NAME);
318 oc.write(type, "type", 0);
319 oc.write(subType, "subtype", 0);
320 oc.write(description, "description", null);
323 oc.write((String) value, "value", null);
326 oc.write((Integer) value, "value", 0);
329 oc.write((Float) value, "value", 0);
334 oc.write((int[]) value, "value", null);
337 oc.write((float[]) value, "value", null)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Spline.java 408 OutputCapsule oc = ex.getCapsule(this); local
409 oc.writeSavableArrayList((ArrayList) controlPoints, "controlPoints", null);
410 oc.write(type, "type", SplineType.CatmullRom);
415 oc.write(list, "segmentsLength", null);
417 oc.write(totalLength, "totalLength", 0);
418 oc.writeSavableArrayList((ArrayList) CRcontrolPoints, "CRControlPoints", null);
419 oc.write(curveTension, "curveTension", 0.5f);
420 oc.write(cycle, "cycle", false);
421 oc.writeSavableArrayList((ArrayList<Float>)knots, "knots", null);
422 oc.write(weights, "weights", null)
    [all...]
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
RigidBodyControl.java 247 OutputCapsule oc = ex.getCapsule(this); local
248 oc.write(enabled, "enabled", true);
249 oc.write(motionState.isApplyPhysicsLocal(), "applyLocalPhysics", false);
250 oc.write(kinematicSpatial, "kinematicSpatial", true);
251 oc.write(spatial, "spatial", null);
VehicleControl.java 253 OutputCapsule oc = ex.getCapsule(this); local
254 oc.write(enabled, "enabled", true);
255 oc.write(motionState.isApplyPhysicsLocal(), "applyLocalPhysics", false);
256 oc.write(spatial, "spatial", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
BoneTrack.java 288 OutputCapsule oc = ex.getCapsule(this); local
289 oc.write(targetBoneIndex, "boneIndex", 0);
290 oc.write(translations, "translations", null);
291 oc.write(rotations, "rotations", null);
292 oc.write(times, "times", null);
293 oc.write(scales, "scales", null);
SpatialTrack.java 227 OutputCapsule oc = ex.getCapsule(this); local
228 oc.write(translations, "translations", null);
229 oc.write(rotations, "rotations", null);
230 oc.write(times, "times", null);
231 oc.write(scales, "scales", null);
SkeletonControl.java 533 OutputCapsule oc = ex.getCapsule(this); local
534 oc.write(targets, "targets", null);
535 oc.write(skeleton, "skeleton", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/audio/
AudioNode.java 733 OutputCapsule oc = ex.getCapsule(this); local
734 oc.write(audioKey, "audio_key", null);
735 oc.write(loop, "looping", false);
736 oc.write(volume, "volume", 1);
737 oc.write(pitch, "pitch", 1);
738 oc.write(timeOffset, "time_offset", 0);
739 oc.write(dryFilter, "dry_filter", null);
741 oc.write(velocity, "velocity", null);
742 oc.write(reverbEnabled, "reverb_enabled", false);
743 oc.write(reverbFilter, "reverb_filter", null)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
MotionPath.java 154 OutputCapsule oc = ex.getCapsule(this); local
155 oc.write(spline, "spline", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/cinematic/events/
MotionTrack.java 199 OutputCapsule oc = ex.getCapsule(this); local
200 oc.write(lookAt, "lookAt", Vector3f.ZERO);
201 oc.write(upVector, "upVector", Vector3f.UNIT_Y);
202 oc.write(rotation, "rotation", Quaternion.IDENTITY);
203 oc.write(directionType, "directionType", Direction.None);
204 oc.write(path, "path", null);
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/
GeoMap.java 342 OutputCapsule oc = ex.getCapsule(this); local
343 oc.write(hdata, "hdataarray", null);
344 oc.write(width, "width", 0);
345 oc.write(height, "height", 0);
346 oc.write(maxval, "maxval", 0);
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
PhysicsHoverControl.java 212 OutputCapsule oc = ex.getCapsule(this); local
213 oc.write(enabled, "enabled", true);
214 oc.write(spatial, "spatial", null);
  /external/jmonkeyengine/engine/src/blender/com/jme3/asset/
BlenderKey.java 353 OutputCapsule oc = e.getCapsule(this); local
354 oc.write(fps, "fps", DEFAULT_FPS);
355 oc.write(generatedTextureWidth, "generated-texture-width", 20);
356 oc.write(generatedTextureHeight, "generated-texture-height", 20);
357 oc.write(generatedTextureDepth, "generated-texture-depth", 20);
358 oc.write(featuresToLoad, "features-to-load", FeaturesToLoad.ALL);
359 oc.write(loadUnlinkedAssets, "load-unlinked-assets", false);
360 oc.write(assetRootPath, "asset-root-path", null);
361 oc.write(fixUpAxis, "fix-up-axis", true);
362 oc.write(usedWorld, "used-world", null);
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
BIHNode.java 115 OutputCapsule oc = ex.getCapsule(this); local
116 oc.write(leftIndex, "left_index", 0);
117 oc.write(rightIndex, "right_index", 0);
118 oc.write(leftPlane, "left_plane", 0);
119 oc.write(rightPlane, "right_plane", 0);
120 oc.write(axis, "axis", 0);
121 oc.write(left, "left_node", null);
122 oc.write(right, "right_node", null);
BIHTree.java 466 OutputCapsule oc = ex.getCapsule(this); local
467 oc.write(mesh, "mesh", null);
468 oc.write(root, "root", null);
469 oc.write(maxTrisPerNode, "tris_per_node", 0);
470 oc.write(pointData, "points", null);
471 oc.write(triIndices, "indices", null);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
Geometry.java 524 OutputCapsule oc = ex.getCapsule(this); local
525 oc.write(mesh, "mesh", null);
527 oc.write(material.getAssetName(), "materialName", null);
529 oc.write(material, "material", null);
530 oc.write(ignoreTransform, "ignoreTransform", false);
  /external/libvpx/vp8/decoder/
detokenize.c 184 const VP8_COMMON *const oc = & dx->common; local
239 coef_probs = oc->fc.coef_probs [type] [ 0 ] [0];
351 coef_probs = oc->fc.coef_probs [type] [ 0 ] [0];
359 coef_probs = oc->fc.coef_probs [type] [ 0 ] [0];
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
ParticleEmitter.java 1097 OutputCapsule oc = ex.getCapsule(this); local
    [all...]

Completed in 989 milliseconds

1 23 4