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

1 23 4 5 6 7 8

  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_flatshade.c 42 struct draw_stage stage; member in struct:flat_stage
60 flat_stage(struct draw_stage *stage)
62 return (struct flat_stage *) stage;
67 static INLINE void copy_colors( struct draw_stage *stage,
71 const struct flat_stage *flat = flat_stage(stage);
87 static INLINE void copy_colors2( struct draw_stage *stage,
92 const struct flat_stage *flat = flat_stage(stage);
112 static void flatshade_tri_0( struct draw_stage *stage,
121 tmp.v[1] = dup_vert(stage, header->v[1], 0);
122 tmp.v[2] = dup_vert(stage, header->v[2], 1)
    [all...]
draw_pipe_unfilled.c 29 * \brief Drawing stage for handling glPolygonMode(line/point).
43 struct draw_stage stage; member in struct:unfilled_stage
53 static INLINE struct unfilled_stage *unfilled_stage( struct draw_stage *stage )
55 return (struct unfilled_stage *)stage;
60 static void point( struct draw_stage *stage,
65 stage->next->point( stage->next, &tmp );
68 static void line( struct draw_stage *stage,
75 stage->next->line( stage->next, &tmp )
    [all...]
draw_pipe_validate.c 158 static struct draw_stage *validate_pipeline( struct draw_stage *stage )
160 struct draw_context *draw = stage->draw;
167 /* Set the validate's next stage to the rasterize stage, so that it
170 stage->next = next;
256 /* Always run the cull stage as we calculate determinant there
268 /* Clip stage
289 static void validate_tri( struct draw_stage *stage,
292 struct draw_stage *pipeline = validate_pipeline( stage );
296 static void validate_line( struct draw_stage *stage,
337 struct draw_stage *stage = CALLOC_STRUCT(draw_stage); local
    [all...]
draw_pipe_offset.c 42 struct draw_stage stage; member in struct:offset_stage
51 static INLINE struct offset_stage *offset_stage( struct draw_stage *stage )
53 return (struct offset_stage *) stage;
64 static void do_offset_tri( struct draw_stage *stage,
67 const unsigned pos = draw_current_shader_position_output(stage->draw);
68 struct offset_stage *offset = offset_stage(stage);
106 stage->next->tri( stage->next, header );
110 static void offset_tri( struct draw_stage *stage,
118 tmp.v[0] = dup_vert(stage, header->v[0], 0)
    [all...]
draw_pipe_vbuf.c 30 * Vertex buffer drawing stage.
50 * Vertex buffer emit stage.
53 struct draw_stage stage; /**< This must be first (base class) */ member in struct:vbuf_stage
89 vbuf_stage( struct draw_stage *stage )
91 assert(stage);
92 return (struct vbuf_stage *)stage;
154 vbuf_tri( struct draw_stage *stage,
157 struct vbuf_stage *vbuf = vbuf_stage( stage );
169 vbuf_line( struct draw_stage *stage,
172 struct vbuf_stage *vbuf = vbuf_stage( stage );
    [all...]
draw_pipe_wide_line.c 41 struct draw_stage stage; member in struct:wideline_stage
48 static INLINE struct wideline_stage *wideline_stage( struct draw_stage *stage )
50 return (struct wideline_stage *)stage;
58 static void wideline_line( struct draw_stage *stage,
61 /*const struct wideline_stage *wide = wideline_stage(stage);*/
62 const unsigned pos = draw_current_shader_position_output(stage->draw);
63 const float half_width = 0.5f * stage->draw->rasterizer->line_width;
67 struct vertex_header *v0 = dup_vert(stage, header->v[0], 0);
68 struct vertex_header *v1 = dup_vert(stage, header->v[0], 1);
69 struct vertex_header *v2 = dup_vert(stage, header->v[1], 2)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_idct.h 70 struct pipe_sampler_view *stage[2][2]; member in union:vl_idct_buffer::__anon19043
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_shader.cpp 84 unsigned int stage; local
86 for (stage = 0; stage < ARRAY_SIZE(shProg->_LinkedShaders); stage++) {
88 (struct brw_shader *)shProg->_LinkedShaders[stage];
99 ctx->Driver.NewProgram(ctx, targets[stage], shader->base.Name);
107 if (stage == 0) {
143 bool output = stage == MESA_SHADER_FRAGMENT;
144 bool temp = stage == MESA_SHADER_FRAGMENT;
145 bool uniform = stage == MESA_SHADER_FRAGMENT
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_feedback.c 65 struct draw_stage stage; /**< Base class */ member in struct:feedback_stage
76 feedback_stage( struct draw_stage *stage )
78 return (struct feedback_stage *)stage;
119 feedback_tri( struct draw_stage *stage, struct prim_header *prim )
121 struct feedback_stage *fs = feedback_stage(stage);
122 struct draw_context *draw = stage->draw;
132 feedback_line( struct draw_stage *stage, struct prim_header *prim )
134 struct feedback_stage *fs = feedback_stage(stage);
135 struct draw_context *draw = stage->draw;
149 feedback_point( struct draw_stage *stage, struct prim_header *prim
    [all...]
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...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ScanHandler.java 106 public void stage(char[] buff, int offset, int length) throws SAXException; method in interface:ScanHandler
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/extensions/
ControllersTest.java 27 import com.badlogic.gdx.scenes.scene2d.Stage;
41 Stage stage; field in class:ControllersTest
68 stage = new Stage();
78 stage.addActor(ui);
85 Gdx.input.setInputProcessor(stage);
92 stage.getViewport().update(width, height, true);
181 stage.act(Gdx.graphics.getDeltaTime());
182 stage.draw()
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/
LegendreGaussIntegrator.java 173 double oldt = stage(f, min, max, 1);
179 final double t = stage(f, min, max, n);
205 * Compute the n-th stage integral.
210 * @return the value of n-th stage integral
214 private double stage(final UnivariateRealFunction f, method in class:LegendreGaussIntegrator
218 // set up the step for the current stage
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
EngineRunnable.java 14 * In the first stage, this class attempts to decode a resource
16 * this class then requests to be posted again. During the second stage this class then attempts to use the
33 private Stage stage; field in class:EngineRunnable
40 this.stage = Stage.CACHE;
81 return stage == Stage.CACHE;
90 stage = Stage.SOURCE
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-map-private.hh 48 unsigned int stage[2]; /* GSUB/GPOS */ member in struct:hb_ot_map_t::feature_map_t
103 return map ? map->stage[table_index] : (unsigned int) -1;
106 inline void get_stage_lookups (unsigned int table_index, unsigned int stage,
108 if (unlikely (stage == (unsigned int) -1)) {
113 assert (stage <= stages[table_index].len);
114 unsigned int start = stage ? stages[table_index][stage - 1].last_lookup : 0;
115 unsigned int end = stage < stages[table_index].len ? stages[table_index][stage].last_lookup : lookups[table_index].len;
203 unsigned int stage[2]; /* GSUB/GPOS *
    [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/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
SelectBox.java 34 import com.badlogic.gdx.scenes.scene2d.Stage;
101 * the stage height. */
111 protected void setStage (Stage stage) {
112 if (stage == null) selectBoxList.hide();
113 super.setStage(stage);
392 public void show (Stage stage) {
395 stage.removeCaptureListener(hideListener);
396 stage.addCaptureListener(hideListener);
455 Stage stage = getStage(); local
    [all...]
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();
WidgetGroup.java 22 import com.badlogic.gdx.scenes.scene2d.Stage;
98 Stage stage = getStage(); local
99 if (stage != null && parent == stage.getRoot()) {
100 parentWidth = stage.getWidth();
101 parentHeight = stage.getHeight();
  /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...]
  /toolchain/binutils/binutils-2.25/include/
xtensa-isa.h 252 stage values returned by other functions in this library will range
254 Note that the stage numbers used here may not correspond to the
256 stages before stage 0. Returns XTENSA_UNDEFINED on error. */
430 is identified by a <functional unit, pipeline stage> pair. The
438 int stage;
433 int stage; member in struct:xtensa_funcUnit_use_struct
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
BitmapFontTest.java 31 import com.badlogic.gdx.scenes.scene2d.Stage;
40 private Stage stage; field in class:BitmapFontTest
65 stage = new Stage(new ScreenViewport());
76 stage.addActor(label);
81 stage.addActor(window);
217 stage.act(Gdx.graphics.getDeltaTime());
218 stage.draw();
224 stage.getViewport().update(width, height, true)
    [all...]
ScrollPaneScrollBarsTest.java 22 import com.badlogic.gdx.scenes.scene2d.Stage;
35 private Stage stage; field in class:ScrollPaneScrollBarsTest
46 stage = new Stage();
48 Gdx.input.setInputProcessor(stage);
53 stage.addActor(fadeBtn);
68 stage.addActor(onTopBtn);
92 stage.addActor(bottomLeft);
98 stage.addActor(bottomRight);
    [all...]
StageTest.java 34 import com.badlogic.gdx.scenes.scene2d.Stage;
49 Stage stage; field in class:StageTest
50 Stage ui;
69 stage = new Stage(new ScreenViewport());
74 group.setX((float)Math.random() * (stage.getWidth() - NUM_SPRITES * (32 + SPACING)));
75 group.setY((float)Math.random() * (stage.getHeight() - NUM_SPRITES * (32 + SPACING)));
79 stage.addActor(group);
84 ui = new Stage(new ScreenViewport());
    [all...]
  /bootable/recovery/
screen_ui.h 132 int stage, max_stage; member in class:ScreenRecoveryUI

Completed in 1579 milliseconds

1 23 4 5 6 7 8