HomeSort by relevance Sort by last modified time
    Searched refs:stage (Results 26 - 50 of 356) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/mesa/tnl/
t_vb_normals.c 46 #define NORMAL_STAGE_DATA(stage) ((struct normal_stage_data *)stage->privatePtr)
50 run_normal_stage(struct gl_context *ctx, struct tnl_pipeline_stage *stage)
52 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage);
92 validate_normal_stage(struct gl_context *ctx, struct tnl_pipeline_stage *stage)
94 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage);
146 * Allocate stage's private data (storage for transformed normals).
149 alloc_normal_data(struct gl_context *ctx, struct tnl_pipeline_stage *stage)
154 stage->privatePtr = malloc(sizeof(*store));
155 store = NORMAL_STAGE_DATA(stage);
    [all...]
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
GroupCullingTest.java 22 import com.badlogic.gdx.scenes.scene2d.Stage;
32 private Stage stage; field in class:GroupCullingTest
39 stage = new Stage();
40 Gdx.input.setInputProcessor(stage);
44 stage.addActor(root);
66 stage.dispose();
71 stage.getViewport().update(width, height, true);
78 stage.act(Gdx.graphics.getDeltaTime());
    [all...]
LabelScaleTest.java 23 import com.badlogic.gdx.scenes.scene2d.Stage;
31 Stage stage; field in class:LabelScaleTest
39 stage = new Stage();
40 Gdx.input.setInputProcessor(stage);
43 stage.addActor(table);
62 stage.dispose();
71 stage.act(Math.min(Gdx.graphics.getDeltaTime(), 1 / 30f));
72 stage.draw()
    [all...]
TextButtonTest.java 23 import com.badlogic.gdx.scenes.scene2d.Stage;
29 private Stage stage; field in class:TextButtonTest
34 stage = new Stage();
35 Gdx.input.setInputProcessor(stage);
43 stage.addActor(t);
51 stage.draw();
53 SpriteBatch spriteBatch = (SpriteBatch)stage.getBatch();
60 stage.getViewport().update(width, height, true);
    [all...]
ActionTest.java 24 import com.badlogic.gdx.scenes.scene2d.Stage;
30 Stage stage; field in class:ActionTest
35 stage = new Stage();
54 stage.addActor(img);
60 stage.act(Math.min(Gdx.graphics.getDeltaTime(), 1 / 30f));
61 stage.draw();
66 stage.dispose();
GroupFadeTest.java 28 import com.badlogic.gdx.scenes.scene2d.Stage;
35 Stage stage; field in class:GroupFadeTest
40 stage = new Stage();
47 stage.addActor(img);
50 stage.getRoot().addAction(forever(sequence(fadeOut(3), fadeIn(3))));
56 stage.act(Gdx.graphics.getDeltaTime());
57 stage.draw();
63 stage.dispose();
    [all...]
ActionSequenceTest.java 28 import com.badlogic.gdx.scenes.scene2d.Stage;
38 Stage stage; field in class:ActionSequenceTest
43 stage = new Stage();
61 stage.addActor(img);
62 stage.addActor(img2);
63 stage.addActor(img3);
74 stage.act(Math.min(Gdx.graphics.getDeltaTime(), 1 / 30f));
75 stage.draw();
    [all...]
ScrollPane2Test.java 24 import com.badlogic.gdx.scenes.scene2d.Stage;
32 Stage stage; field in class:ScrollPane2Test
36 stage = new Stage();
37 Gdx.input.setInputProcessor(stage);
77 stage.addActor(pane);
83 stage.act(Gdx.graphics.getDeltaTime());
84 stage.draw();
88 stage.getViewport().update(width, height, true);
    [all...]
TreeTest.java 22 import com.badlogic.gdx.scenes.scene2d.Stage;
32 Stage stage; field in class:TreeTest
35 stage = new Stage();
36 Gdx.input.setInputProcessor(stage);
42 stage.addActor(table);
69 stage.act(Gdx.graphics.getDeltaTime());
70 stage.draw();
74 stage.getViewport().update(width, height, true);
    [all...]
ComplexActionTest.java 32 import com.badlogic.gdx.scenes.scene2d.Stage;
38 Stage stage; field in class:ComplexActionTest
43 stage = new Stage();
61 stage.addActor(img1);
62 stage.addActor(img2);
71 stage.act(Math.min(Gdx.graphics.getDeltaTime(), 1 / 30f));
72 stage.draw();
77 stage.dispose();
    [all...]
DragAndDropTest.java 25 import com.badlogic.gdx.scenes.scene2d.Stage;
38 Stage stage; field in class:DragAndDropTest
41 stage = new Stage();
42 Gdx.input.setInputProcessor(stage);
50 stage.addActor(sourceImage);
54 stage.addActor(validTargetImage);
58 stage.addActor(invalidTargetImage);
110 stage.act(Gdx.graphics.getDeltaTime())
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe.h 59 struct draw_stage *next; /**< next stage in pipeline */
95 extern void draw_free_temp_verts( struct draw_stage *stage );
96 extern boolean draw_alloc_temp_verts( struct draw_stage *stage, unsigned nr );
100 void draw_pipe_passthrough_tri(struct draw_stage *stage, struct prim_header *header);
101 void draw_pipe_passthrough_line(struct draw_stage *stage, struct prim_header *header);
102 void draw_pipe_passthrough_point(struct draw_stage *stage, struct prim_header *header);
108 * \param stage drawing stage info
110 * \param idx index into stage's tmp[] array to put the copy (dest)
114 dup_vert( struct draw_stage *stage,
    [all...]
draw_pipe_pstipple.c 29 * Polygon stipple stage: implement polygon stipple with texture map and
76 struct draw_stage stage; member in struct:pstip_stage
342 /*struct draw_context *draw = pstip->stage.draw;*/
502 struct draw_context *draw = pstip->stage.draw;
515 pstip_stage( struct draw_stage *stage )
517 return (struct pstip_stage *) stage;
522 pstip_first_tri(struct draw_stage *stage, struct prim_header *header)
524 struct pstip_stage *pstip = pstip_stage(stage);
526 struct draw_context *draw = stage->draw;
529 assert(stage->draw->rasterizer->poly_stipple_enable)
    [all...]
  /external/guice/core/src/com/google/inject/internal/
InjectorOptionsProcessor.java 22 import com.google.inject.Stage;
69 InjectorOptions getOptions(Stage stage, InjectorOptions parentOptions) {
70 checkNotNull(stage, "stage must be set");
73 stage,
79 checkState(stage == parentOptions.stage, "child & parent stage don't match");
81 stage,
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
Event.java 27 * An Event may be marked as "handled" which will end its propagation outside of the Stage (see {@link #handle()}). The default
36 private Stage stage; field in class:Event
41 private boolean handled; // true means the event was handled (the stage will eat the input)
45 /** Marks this event as handled. This does not affect event propagation inside scene2d, but causes the {@link Stage} event
46 * methods to return true, which will eat the event so it is not passed on to the application under the stage. */
67 stage = null;
130 public void setStage (Stage stage) {
131 this.stage = stage;
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_stipple.c 3 * quad polygon stipple stage
73 struct quad_stage *stage = CALLOC_STRUCT(quad_stage); local
75 stage->softpipe = softpipe;
76 stage->begin = stipple_begin;
77 stage->run = stipple_quad;
78 stage->destroy = stipple_destroy;
80 return stage;
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
cb_search.c 49 int16_t ii, j, stage; local
180 /* The gain value computed in the previous stage is used
181 * as an upper limit to what the next stage gain value
182 * is allowed to be. In stage 0, 16384 (1.0 in Q14) is used as
186 for (stage=0; stage<CB_NSTAGES; stage++) {
189 range = WebRtcIlbcfix_kSearchRange[block][stage];
214 range=WebRtcIlbcfix_kSearchRange[block][stage]+20;
216 range=WebRtcIlbcfix_kSearchRange[block][stage];
    [all...]
cb_search_core.h 27 int16_t stage, /* (i) Stage of this search */
gain_quant.c 29 int16_t stage, /* (i) The stage of the search */
45 cb = WebRtcIlbcfix_kGain[stage];
46 cblen = 32>>stage;
47 noChecks = 4-stage;
  /external/mesa3d/src/mesa/state_tracker/
st_cb_rasterpos.c 30 * private draw module. Plug in a special "rasterpos" stage at the end
56 * Our special drawing pipeline stage (replaces rasterization).
60 struct draw_stage stage; /**< Base class */ member in struct:rastpos_stage
71 rastpos_stage( struct draw_stage *stage )
73 return (struct rastpos_stage *) stage;
77 rastpos_flush( struct draw_stage *stage, unsigned flags )
83 rastpos_reset_stipple_counter( struct draw_stage *stage )
89 rastpos_tri( struct draw_stage *stage, struct prim_header *prim )
96 rastpos_line( struct draw_stage *stage, struct prim_header *prim )
103 rastpos_destroy(struct draw_stage *stage)
    [all...]
  /system/bt/btif/src/
btif_sock_sdp.c 129 char *stage = "protocol_list"; local
135 stage = "service_name";
144 stage = "browseable";
155 "record, stage: %s, scn: %d, name: %s, with_obex: %d",
156 stage, channel, name, with_obex);
175 char *stage = "create_base_record"; local
196 stage = "service_class_sequence";
208 "stage: %s, service_name: %s", stage, name);
225 char *stage = "create_base_record" local
274 char *stage = "create_base_record"; local
343 char *stage = "create_base_record"; local
    [all...]
  /device/google/marlin/recovery/oem-recovery/
oem-updater.cpp 59 enum boot_update_stage stage; local
68 stage = UPDATE_MAIN;
70 stage = UPDATE_BACKUP;
72 stage = UPDATE_FINALIZE;
74 fprintf(stderr, "Unrecognized boot update stage, exitting\n");
81 rc = prepare_boot_update(stage);
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Widget.java 22 import com.badlogic.gdx.scenes.scene2d.Stage;
75 Stage stage = getStage(); local
76 if (stage != null && parent == stage.getRoot()) {
77 parentWidth = stage.getWidth();
78 parentHeight = stage.getHeight();
Dialog.java 28 import com.badlogic.gdx.scenes.scene2d.Stage;
39 * {@link #result(Object)} is called and the dialog is removed from the stage.
107 Stage stage = getStage();
108 if (isModal && stage != null && stage.getRoot().getChildren().size > 0
109 && stage.getRoot().getChildren().peek() == Dialog.this) { // Dialog is top most actor.
119 protected void setStage (Stage stage) {
120 if (stage == null
217 Stage stage = getStage(); local
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-map.cc 108 info->stage[0] = current_stage[0];
109 info->stage[1] = current_stage[1];
137 /* We default to applying required feature in stage 0. If the required
139 * in the stage for that tag.
177 feature_infos[j].stage[0] = MIN (feature_infos[j].stage[0], feature_infos[i].stage[0]);
178 feature_infos[j].stage[1] = MIN (feature_infos[j].stage[1], feature_infos[i].stage[1])
    [all...]

Completed in 1267 milliseconds

12 3 4 5 6 7 8 91011>>