OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:scene
(Results
1 - 25
of
512
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
SceneGraphVisitor.java
1
package com.jme3.
scene
;
4
* <code>SceneGraphVisitorAdapter</code> is used to traverse the
scene
6
* Use by calling {@link Spatial#depthFirstTraversal(com.jme3.
scene
.SceneGraphVisitor) }
7
* or {@link Spatial#breadthFirstTraversal(com.jme3.
scene
.SceneGraphVisitor)}.
11
* Called when a spatial is visited in the
scene
graph.
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
MeshAnimationLoader.java
33
package com.jme3.
scene
.plugins.ogre;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_scene.c
50
* Create a new
scene
object.
56
struct lp_scene *
scene
= CALLOC_STRUCT(lp_scene);
local
57
if (!
scene
)
60
scene
->pipe = pipe;
62
scene
->data.head =
65
pipe_mutex_init(
scene
->mutex);
67
return
scene
;
72
* Free all data associated with the given
scene
, and the
scene
itself.
75
lp_scene_destroy(struct lp_scene *
scene
)
[
all
...]
lp_scene.h
56
/*
Scene
temporary storage is clamped to this size:
60
/* The maximum amount of texture storage referenced by a
scene
is
106
* within a
scene
.
112
* initiate a
scene
without relying on malloc succeeding.
142
/** the framebuffer to render the
scene
into */
145
/** list of resources referenced by the
scene
commands */
148
/** Total memory used by the
scene
(in bytes). This sums all the
150
* other random allocations within the
scene
.
154
/** Sum of sizes of all resources referenced by the
scene
. Sums
155
* all the textures read by the
scene
[
all
...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
lp_scene.c
50
* Create a new
scene
object.
56
struct lp_scene *
scene
= CALLOC_STRUCT(lp_scene);
local
57
if (!
scene
)
60
scene
->pipe = pipe;
62
scene
->data.head =
65
pipe_mutex_init(
scene
->mutex);
67
return
scene
;
72
* Free all data associated with the given
scene
, and the
scene
itself.
75
lp_scene_destroy(struct lp_scene *
scene
)
[
all
...]
lp_scene.h
56
/*
Scene
temporary storage is clamped to this size:
60
/* The maximum amount of texture storage referenced by a
scene
is
106
* within a
scene
.
112
* initiate a
scene
without relying on malloc succeeding.
142
/** the framebuffer to render the
scene
into */
145
/** list of resources referenced by the
scene
commands */
148
/** Total memory used by the
scene
(in bytes). This sums all the
150
* other random allocations within the
scene
.
154
/** Sum of sizes of all resources referenced by the
scene
. Sums
155
* all the textures read by the
scene
[
all
...]
/external/jmonkeyengine/engine/src/test/jme3test/scene/
TestUserData.java
33
package jme3test.
scene
;
36
import com.jme3.
scene
.Node;
37
import com.jme3.
scene
.Spatial;
47
Node
scene
= (Node) assetManager.loadModel("Scenes/DotScene/DotScene.
scene
");
local
48
System.out.println("
Scene
: " +
scene
);
50
Spatial testNode =
scene
.getChild("TestNode");
/external/jmonkeyengine/engine/src/test/jme3test/light/
TestManyLights.java
36
import com.jme3.
scene
.Node;
49
Node
scene
= (Node) assetManager.loadModel("Scenes/ManyLights/Main.
scene
");
local
50
rootNode.attachChild(
scene
);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
ConstraintNull.java
1
package com.jme3.
scene
.plugins.blender.constraints;
3
import com.jme3.
scene
.plugins.blender.BlenderContext;
4
import com.jme3.
scene
.plugins.blender.animations.Ipo;
5
import com.jme3.
scene
.plugins.blender.exceptions.BlenderFileException;
6
import com.jme3.
scene
.plugins.blender.file.Structure;
ConstraintAction.java
1
package com.jme3.
scene
.plugins.blender.constraints;
3
import com.jme3.
scene
.plugins.blender.BlenderContext;
4
import com.jme3.
scene
.plugins.blender.animations.Ipo;
5
import com.jme3.
scene
.plugins.blender.exceptions.BlenderFileException;
6
import com.jme3.
scene
.plugins.blender.file.Structure;
ConstraintChildOf.java
1
package com.jme3.
scene
.plugins.blender.constraints;
3
import com.jme3.
scene
.plugins.blender.BlenderContext;
4
import com.jme3.
scene
.plugins.blender.animations.Ipo;
5
import com.jme3.
scene
.plugins.blender.exceptions.BlenderFileException;
6
import com.jme3.
scene
.plugins.blender.file.Structure;
ConstraintClampTo.java
1
package com.jme3.
scene
.plugins.blender.constraints;
3
import com.jme3.
scene
.plugins.blender.BlenderContext;
4
import com.jme3.
scene
.plugins.blender.animations.Ipo;
5
import com.jme3.
scene
.plugins.blender.exceptions.BlenderFileException;
6
import com.jme3.
scene
.plugins.blender.file.Structure;
ConstraintDampTrack.java
1
package com.jme3.
scene
.plugins.blender.constraints;
6
import com.jme3.
scene
.plugins.blender.BlenderContext;
7
import com.jme3.
scene
.plugins.blender.animations.Ipo;
8
import com.jme3.
scene
.plugins.blender.exceptions.BlenderFileException;
9
import com.jme3.
scene
.plugins.blender.file.Structure;
ConstraintFollowPath.java
1
package com.jme3.
scene
.plugins.blender.constraints;
3
import com.jme3.
scene
.plugins.blender.BlenderContext;
4
import com.jme3.
scene
.plugins.blender.animations.Ipo;
5
import com.jme3.
scene
.plugins.blender.exceptions.BlenderFileException;
6
import com.jme3.
scene
.plugins.blender.file.Structure;
ConstraintLockTrack.java
1
package com.jme3.
scene
.plugins.blender.constraints;
3
import com.jme3.
scene
.plugins.blender.BlenderContext;
4
import com.jme3.
scene
.plugins.blender.animations.Ipo;
5
import com.jme3.
scene
.plugins.blender.exceptions.BlenderFileException;
6
import com.jme3.
scene
.plugins.blender.file.Structure;
ConstraintMinMax.java
1
package com.jme3.
scene
.plugins.blender.constraints;
3
import com.jme3.
scene
.plugins.blender.BlenderContext;
4
import com.jme3.
scene
.plugins.blender.animations.Ipo;
5
import com.jme3.
scene
.plugins.blender.exceptions.BlenderFileException;
6
import com.jme3.
scene
.plugins.blender.file.Structure;
ConstraintPivot.java
1
package com.jme3.
scene
.plugins.blender.constraints;
6
import com.jme3.
scene
.plugins.blender.BlenderContext;
7
import com.jme3.
scene
.plugins.blender.animations.Ipo;
8
import com.jme3.
scene
.plugins.blender.exceptions.BlenderFileException;
9
import com.jme3.
scene
.plugins.blender.file.Structure;
ConstraintPython.java
1
package com.jme3.
scene
.plugins.blender.constraints;
3
import com.jme3.
scene
.plugins.blender.BlenderContext;
4
import com.jme3.
scene
.plugins.blender.animations.Ipo;
5
import com.jme3.
scene
.plugins.blender.exceptions.BlenderFileException;
6
import com.jme3.
scene
.plugins.blender.file.Structure;
ConstraintRigidBodyJoint.java
1
package com.jme3.
scene
.plugins.blender.constraints;
3
import com.jme3.
scene
.plugins.blender.BlenderContext;
4
import com.jme3.
scene
.plugins.blender.animations.Ipo;
5
import com.jme3.
scene
.plugins.blender.exceptions.BlenderFileException;
6
import com.jme3.
scene
.plugins.blender.file.Structure;
ConstraintSplineInverseKinematic.java
1
package com.jme3.
scene
.plugins.blender.constraints;
6
import com.jme3.
scene
.plugins.blender.BlenderContext;
7
import com.jme3.
scene
.plugins.blender.animations.Ipo;
8
import com.jme3.
scene
.plugins.blender.exceptions.BlenderFileException;
9
import com.jme3.
scene
.plugins.blender.file.Structure;
ConstraintStretchTo.java
1
package com.jme3.
scene
.plugins.blender.constraints;
3
import com.jme3.
scene
.plugins.blender.BlenderContext;
4
import com.jme3.
scene
.plugins.blender.animations.Ipo;
5
import com.jme3.
scene
.plugins.blender.exceptions.BlenderFileException;
6
import com.jme3.
scene
.plugins.blender.file.Structure;
ConstraintTransform.java
1
package com.jme3.
scene
.plugins.blender.constraints;
3
import com.jme3.
scene
.plugins.blender.BlenderContext;
4
import com.jme3.
scene
.plugins.blender.animations.Ipo;
5
import com.jme3.
scene
.plugins.blender.exceptions.BlenderFileException;
6
import com.jme3.
scene
.plugins.blender.file.Structure;
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/materials/
IAlphaMask.java
1
package com.jme3.
scene
.plugins.blender.materials;
/external/jmonkeyengine/engine/src/test/jme3test/tools/
TestTextureAtlas.java
39
import com.jme3.
scene
.Geometry;
40
import com.jme3.
scene
.Node;
41
import com.jme3.
scene
.Spatial;
42
import com.jme3.
scene
.shape.Quad;
55
Node
scene
= new Node("
Scene
");
local
56
Spatial obj1 = assetManager.loadModel("Models/Ferrari/Car.
scene
");
66
scene
.attachChild(obj1);
67
scene
.attachChild(obj2);
68
scene
.attachChild(obj3)
[
all
...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
Modifier.java
1
package com.jme3.
scene
.plugins.blender.modifiers;
3
import com.jme3.
scene
.Node;
4
import com.jme3.
scene
.plugins.blender.BlenderContext;
5
import com.jme3.
scene
.plugins.blender.file.Pointer;
6
import com.jme3.
scene
.plugins.blender.file.Structure;
Completed in 1726 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>