HomeSort by relevance Sort by last modified time
    Searched refs:scene (Results 1 - 25 of 233) sorted by null

1 2 3 4 5 6 7 8 910

  /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...]
lp_scene_queue.h 48 lp_scene_enqueue(struct lp_scene_queue *queue, struct lp_scene *scene);
lp_scene_queue.c 30 * Scene queue. We'll use two queues. One contains "full" scenes which
32 * which are produced by the "rast" code when it finishes rendering a scene.
45 struct lp_scene *scene; member in struct:scene_packet
58 /** Allocate a new scene queue */
79 /** Delete a scene queue */
95 packet.scene = NULL;
104 return packet.scene;
110 lp_scene_enqueue(struct lp_scene_queue *queue, struct lp_scene *scene)
116 packet.scene = scene;
    [all...]
lp_rast_priv.h 85 struct lp_scene *scene; member in struct:lp_rasterizer_task
119 /** The scene currently being rasterized by the threads */
152 const struct lp_scene *scene = task->scene; local
155 assert(x < scene->tiles_x * TILE_SIZE);
156 assert(y < scene->tiles_y * TILE_SIZE);
160 if (!scene->zsbuf.map) {
169 depth = (scene->zsbuf.map +
170 scene->zsbuf.stride * y +
171 scene->zsbuf.blocksize * x * TILE_VECTOR_HEIGHT)
185 const struct lp_scene *scene = task->scene; local
257 const struct lp_scene *scene = task->scene; local
    [all...]
lp_rast.c 56 * Begin rasterizing a scene.
57 * Called once per scene by one thread.
61 struct lp_scene *scene )
64 rast->curr_scene = scene;
68 lp_scene_begin_rasterization( scene );
69 lp_scene_bin_iter_begin( scene );
82 debug_printf("Post render scene: tile unswizzle: %u tile swizzle: %u\n",
97 const struct lp_scene *scene = task->scene; local
111 struct pipe_surface *zsbuf = task->scene->fb.zsbuf
153 const struct lp_scene *scene = task->scene; local
215 const struct lp_scene *scene = task->scene; local
305 const struct lp_scene *scene = task->scene; local
336 const struct lp_scene *scene = task->scene; local
399 const struct lp_scene *scene = task->scene; local
432 const struct lp_scene *scene = task->scene; local
581 const struct lp_scene *scene = task->scene; local
    [all...]
  /frameworks/support/transition/base/android/support/transition/
TransitionManagerImpl.java 24 public abstract void setTransition(SceneImpl scene, TransitionImpl transition);
29 public abstract void transitionTo(SceneImpl scene);
TransitionManagerStaticsImpl.java 26 public abstract void go(SceneImpl scene);
28 public abstract void go(SceneImpl scene, TransitionImpl transition);
  /frameworks/support/transition/api21/android/support/transition/
SceneStaticsApi21.java 26 SceneApi21 scene = new SceneApi21(); local
27 scene.mScene = android.transition.Scene.getSceneForLayout(sceneRoot, layoutId, context);
28 return scene;
  /frameworks/support/transition/ics/android/support/transition/
SceneStaticsIcs.java 26 SceneIcs scene = new SceneIcs(); local
27 scene.mScene = ScenePort.getSceneForLayout(sceneRoot, layoutId, context);
28 return scene;
TransitionManagerIcs.java 24 public void setTransition(SceneImpl scene, TransitionImpl transition) {
25 mTransitionManager.setTransition(((SceneIcs) scene).mScene,
36 public void transitionTo(SceneImpl scene) {
37 mTransitionManager.transitionTo(((SceneIcs) scene).mScene);
TransitionManagerStaticsIcs.java 24 public void go(SceneImpl scene) {
25 TransitionManagerPort.go(((SceneIcs) scene).mScene);
29 public void go(SceneImpl scene, TransitionImpl transition) {
30 TransitionManagerPort.go(((SceneIcs) scene).mScene,
  /frameworks/support/transition/kitkat/android/support/transition/
SceneStaticsKitKat.java 26 SceneKitKat scene = new SceneKitKat(); local
27 scene.mScene = android.transition.Scene.getSceneForLayout(sceneRoot, layoutId, context);
28 return scene;
TransitionManagerKitKat.java 26 public void setTransition(SceneImpl scene, TransitionImpl transition) {
27 mTransitionManager.setTransition(((SceneWrapper) scene).mScene,
39 public void transitionTo(SceneImpl scene) {
40 mTransitionManager.transitionTo(((SceneWrapper) scene).mScene);
TransitionManagerStaticsKitKat.java 24 public void go(SceneImpl scene) {
25 android.transition.TransitionManager.go(((SceneWrapper) scene).mScene);
29 public void go(SceneImpl scene, TransitionImpl transition) {
30 android.transition.TransitionManager.go(((SceneWrapper) scene).mScene,
  /cts/tests/tests/transition/src/android/transition/cts/
SceneTest.java 18 import android.transition.Scene;
27 Scene scene = new Scene(mSceneRoot); local
28 assertEquals(mSceneRoot, scene.getSceneRoot());
36 scene.setEnterAction(enterCheck);
38 scene.setExitAction(exitCheck);
39 enterScene(scene);
47 exitScene(scene);
57 Scene scene = new Scene(mSceneRoot, view) local
80 Scene scene = loadScene(R.layout.scene1); local
    [all...]
BaseTransitionTest.java 21 import android.transition.Scene;
93 protected Scene loadScene(final View layout) throws Throwable {
94 Scene[] scene = new Scene[1]; local
98 scene[0] = new Scene(mSceneRoot, layout);
102 return scene[0];
105 protected Scene loadScene(final int layoutId) throws Throwable {
106 Scene scene[] = new Scene[1] local
    [all...]
  /cts/apps/CameraITS/tools/
load_scene.py 25 scene = None
27 if s[:6] == 'scene=' and len(s) > 6:
28 scene = s[6:]
36 if not scene:
37 print 'Error: need to specify which scene to load'
44 remote_scene_file = '/sdcard/Download/%s.pdf' % scene
46 scene, scene+'.pdf')
run_all_tests.py 34 scenes: the test scene(s) to be executed. Use comma to separate multiple
38 display. When this argument presents, change of test scene will
71 "scene1" : "A grey card covering at least the middle 30% of the scene",
75 "middle 50% of the scene. See CameraITS.pdf section 2.3.4 "
83 "If that is the case, no scene setup is required and "
84 "you can just answer Y when being asked if the scene "
109 # Validate user input scene names
119 scene_str = "scene" + s
129 print "Unknown scene specifiied:", s
160 print "Running ITS on camera: %s, scene %s" % (camera_ids, scenes
    [all...]
  /frameworks/support/transition/tests/src/android/support/transition/
SceneTest.java 39 Scene scene = new Scene(root); local
40 assertThat(scene.getSceneRoot(), is(sameInstance(root)));
49 Scene scene = new Scene(root, layout); local
52 scene.setEnterAction(enterAction);
53 scene.setExitAction(exitAction);
54 scene.enter()
69 Scene scene = new Scene(root, view); local
87 Scene scene = new Scene(root); local
98 Scene scene = new Scene(root); local
110 Scene scene = new Scene(root); local
121 Scene scene = Scene.getSceneForLayout(root, R.layout.scene0, activity); local
    [all...]
  /frameworks/support/transition/src/android/support/transition/
TransitionManager.java 26 * change of {@link Scene}. To use the manager, add scenes along with
27 * transition objects with calls to {@link #setTransition(Scene, Transition)}
28 * or {@link #setTransition(Scene, Scene, Transition)}. Setting specific
29 * transitions for scene changes is not required; by default, a Scene change
31 * situations. Specifying other transitions for particular scene changes is
60 * Convenience method to simply change to the given scene using
63 * @param scene The Scene to change t
    [all...]
Scene.java 29 * A scene represents the collection of values that various properties in the
30 * View hierarchy will have when the scene is applied. A Scene can be
33 * scene change.
35 public class Scene {
52 * Constructs a Scene with no information about how values will change
53 * when this scene is applied. This constructor might be used when
54 * a Scene is created with the intention of being dynamically configured,
58 * @param sceneRoot The root of the hierarchy in which scene changes
61 public Scene(@NonNull ViewGroup sceneRoot)
110 Scene scene = scenes.get(layoutId); local
    [all...]
  /frameworks/base/core/java/android/transition/
Scene.java 26 * A scene represents the collection of values that various properties in the
27 * View hierarchy will have when the scene is applied. A Scene can be
30 * scene change.
32 public final class Scene {
41 * Returns a Scene described by the resource file associated with the given
42 * <code>layoutId</code> parameter. If such a Scene has already been created for
43 * the given <code>sceneRoot</code>, that same Scene will be returned.
48 * @param sceneRoot The root of the hierarchy in which scene changes
53 * @return The scene for the given root and layout i
62 Scene scene = scenes.get(layoutId); local
    [all...]
  /frameworks/support/samples/SupportTransitionDemos/src/com/example/android/support/transition/widget/
BasicUsage.java 21 import android.support.transition.Scene;
31 Scene[] setUpScenes(ViewGroup root) {
32 return new Scene[]{
33 Scene.getSceneForLayout(root, R.layout.scene0, this),
34 Scene.getSceneForLayout(root, R.layout.scene1, this),
39 void go(Scene scene) {
40 TransitionManager.go(scene);
  /external/deqp/modules/glshared/
glsRasterizationTestUtil.hpp 69 bool sharedEdge[3]; // !< is the edge i -> i+1 shared with another scene triangle
126 bool verifyTriangleGroupRasterization (const tcu::Surface& surface, const TriangleSceneSpec& scene, const RasterizationArguments& args, tcu::TestLog& log, VerificationMode mode = VERIFICATIONMODE_STRICT);
137 bool verifyLineGroupRasterization (const tcu::Surface& surface, const LineSceneSpec& scene, const RasterizationArguments& args, tcu::TestLog& log);
148 bool verifyPointGroupRasterization (const tcu::Surface& surface, const PointSceneSpec& scene, const RasterizationArguments& args, tcu::TestLog& log);
159 bool verifyTriangleGroupInterpolation (const tcu::Surface& surface, const TriangleSceneSpec& scene, const RasterizationArguments& args, tcu::TestLog& log);
170 LineInterpolationMethod verifyLineGroupInterpolation (const tcu::Surface& surface, const LineSceneSpec& scene, const RasterizationArguments& args, tcu::TestLog& log);

Completed in 362 milliseconds

1 2 3 4 5 6 7 8 910