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

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_util.c 40 draw_pipe_passthrough_point(struct draw_stage *stage, struct prim_header *header)
42 stage->next->point(stage->next, header);
46 draw_pipe_passthrough_line(struct draw_stage *stage, struct prim_header *header)
48 stage->next->line(stage->next, header);
52 draw_pipe_passthrough_tri(struct draw_stage *stage, struct prim_header *header)
54 stage->next->tri(stage->next, header);
69 boolean draw_alloc_temp_verts( struct draw_stage *stage, unsigned nr
114 struct draw_stage *stage = draw->pipeline.first; local
    [all...]
draw_pipe_cull.c 29 * \brief Drawing stage for polygon culling
43 struct draw_stage stage; member in struct:cull_stage
49 static inline struct cull_stage *cull_stage( struct draw_stage *stage )
51 return (struct cull_stage *)stage;
66 static void cull_point( struct draw_stage *stage,
70 draw_current_shader_num_written_culldistances(stage->draw);
72 draw_current_shader_num_written_clipdistances(stage->draw);
80 draw_current_shader_ccdistance_output(stage->draw, cull_idx);
87 stage->next->point( stage->next, header )
    [all...]
draw_pipe_unfilled.c 29 * \brief Drawing stage for handling glPolygonMode(line/point).
44 struct draw_stage stage; member in struct:unfilled_stage
56 static inline struct unfilled_stage *unfilled_stage( struct draw_stage *stage )
58 return (struct unfilled_stage *)stage;
62 inject_front_face_info(struct draw_stage *stage,
65 struct unfilled_stage *unfilled = unfilled_stage(stage);
68 (stage->draw->rasterizer->front_ccw && ccw) ||
69 (!stage->draw->rasterizer->front_ccw && !ccw));
89 static void point(struct draw_stage *stage,
97 stage->next->point(stage->next, &tmp)
    [all...]
draw_pipe_twoside.c 39 struct draw_stage stage; member in struct:twoside_stage
46 static inline struct twoside_stage *twoside_stage( struct draw_stage *stage )
48 return (struct twoside_stage *)stage;
59 struct vertex_header *tmp = dup_vert( &twoside->stage, v, idx );
76 static void twoside_tri( struct draw_stage *stage,
79 struct twoside_stage *twoside = twoside_stage(stage);
93 stage->next->tri( stage->next, &tmp );
96 stage->next->tri( stage->next, header )
    [all...]
draw_pipe_stipple.c 49 struct draw_stage stage; member in struct:stipple_stage
57 stipple_stage(struct draw_stage *stage)
59 return (struct stipple_stage *) stage;
90 emit_segment(struct draw_stage *stage, struct prim_header *header,
93 struct vertex_header *v0new = dup_vert(stage, header->v[0], 0);
94 struct vertex_header *v1new = dup_vert(stage, header->v[1], 1);
98 screen_interp( stage->draw, v0new, t0, header->v[0], header->v[1] );
103 screen_interp( stage->draw, v1new, t1, header->v[0], header->v[1] );
107 stage->next->line( stage->next, &newprim )
    [all...]
draw_pipe_flatshade.c 43 struct draw_stage stage; member in struct:flat_stage
51 flat_stage(struct draw_stage *stage)
53 return (struct flat_stage *) stage;
58 static inline void copy_flats( struct draw_stage *stage,
62 const struct flat_stage *flat = flat_stage(stage);
73 static inline void copy_flats2( struct draw_stage *stage,
78 const struct flat_stage *flat = flat_stage(stage);
93 static void flatshade_tri_0( struct draw_stage *stage,
102 tmp.v[1] = dup_vert(stage, header->v[1], 0);
103 tmp.v[2] = dup_vert(stage, header->v[2], 1)
    [all...]
draw_pipe_wide_point.c 67 struct draw_stage stage; /**< base class */ member in struct:widepoint_stage
87 widepoint_stage( struct draw_stage *stage )
89 return (struct widepoint_stage *)stage;
101 const struct draw_context *draw = wide->stage.draw;
124 static void widepoint_point( struct draw_stage *stage,
127 const struct widepoint_stage *wide = widepoint_stage(stage);
128 const unsigned pos = draw_current_shader_position_output(stage->draw);
129 const boolean sprite = (boolean) stage->draw->rasterizer->point_quad_rasterization;
136 struct vertex_header *v0 = dup_vert(stage, header->v[0], 0);
137 struct vertex_header *v1 = dup_vert(stage, header->v[0], 1)
    [all...]
draw_pipe_offset.c 43 struct draw_stage stage; member in struct:offset_stage
52 static inline struct offset_stage *offset_stage( struct draw_stage *stage )
54 return (struct offset_stage *) stage;
65 static void do_offset_tri( struct draw_stage *stage,
68 const unsigned pos = draw_current_shader_position_output(stage->draw);
69 struct offset_stage *offset = offset_stage(stage);
97 if (stage->draw->floating_point_depth) {
127 stage->next->tri( stage->next, header );
131 static void offset_tri( struct draw_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...]
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
90 vbuf_stage( struct draw_stage *stage )
92 assert(stage);
93 return (struct vbuf_stage *)stage;
155 vbuf_tri( struct draw_stage *stage,
158 struct vbuf_stage *vbuf = vbuf_stage( stage );
170 vbuf_line( struct draw_stage *stage,
173 struct vbuf_stage *vbuf = vbuf_stage( stage );
    [all...]
draw_pipe.h 60 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);
105 struct draw_stage *stage);
107 struct draw_stage *stage);
109 struct draw_stage *stage);
113 * \param stage drawing stage inf
    [all...]
  /system/chre/apps/chqts/src/general_test/
timer_cancel_test.cc 34 * See the TimerCancelTest constructor to see which stage tests which setup.
46 Stage *stage = &mStages[i]; local
47 stage->timerId = chreTimerSet(kDuration, stage, stage->oneShot);
48 if (stage->timerId == CHRE_TIMER_INVALID) {
51 if (stage->expectCallback) {
52 // Go on to the next stage. Note this stage will markSuccess(
144 const Stage *stage = static_cast<const Stage*>(eventData); local
    [all...]
  /external/toolchain-utils/bestflags/
pipeline_worker.py 4 """The pipeline_worker functions of the build and test stage of the framework.
21 def Helper(stage, done_dict, helper_queue, completed_queue, result_queue):
30 stage: The current stage of the pipeline, for example, build stage or test
31 stage.
43 the duplicate tasks will be sent to the next stage via this queue.
59 assert not task.Done(stage)
62 identifier = task.GetIdentifier(stage)
71 task.SetResult(stage, done_dict[identifier]
    [all...]
mock_task.py 22 def __init__(self, stage, identifier, cost=0):
26 stage: the stage of this test is in.
32 _cost field will have this cost. The stage field verifies that the module
33 being tested and the unitest are in the same stage. If the unitest does
40 self._stage = stage
51 def GetIdentifier(self, stage):
52 assert stage == self._stage
55 def SetResult(self, stage, cost):
56 assert stage == self._stag
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
gain_dequant.h 33 int16_t stage /* (i) The stage of the search */
gain_quant.h 31 int16_t stage, /* (i) The stage of the search */
gain_dequant.c 31 int16_t stage /* (i) The stage of the search */
42 gain = WebRtcIlbcfix_kGain[stage];
  /external/guice/core/src/com/google/inject/
Guice.java 56 * calling {@link #createInjector(Stage, Module...)} with Stage.DEVELOPMENT.
67 * calling {@link #createInjector(Stage, Iterable)} with Stage.DEVELOPMENT.
73 return createInjector(Stage.DEVELOPMENT, modules);
78 * stage.
83 public static Injector createInjector(Stage stage, Module... modules) {
84 return createInjector(stage, Arrays.asList(modules));
89 * stage
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_feedback.c 63 struct draw_stage stage; /**< Base class */ member in struct:feedback_stage
74 feedback_stage( struct draw_stage *stage )
76 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_atom_constbuf.h 40 gl_shader_stage stage);
  /external/mesa3d/src/gallium/drivers/i915/
i915_prim_emit.c 46 struct draw_stage stage; /**< This must be first (base class) */ member in struct:setup_stage
56 static inline struct setup_stage *setup_stage( struct draw_stage *stage )
58 return (struct setup_stage *)stage;
128 emit_prim( struct draw_stage *stage,
133 struct i915_context *i915 = setup_stage(stage)->i915;
173 setup_tri( struct draw_stage *stage, struct prim_header *prim )
175 emit_prim( stage, prim, PRIM3D_TRILIST, 3 );
180 setup_line(struct draw_stage *stage, struct prim_header *prim)
182 emit_prim( stage, prim, PRIM3D_LINELIST, 2 );
187 setup_point(struct draw_stage *stage, struct prim_header *prim
    [all...]
  /external/swiftshader/src/D3D8/
Direct3DStateBlock8.cpp 38 for(int stage = 0; stage < 8; stage++)
40 texture[stage] = 0;
131 for(int stage = 0; stage < 8; stage++)
135 if(textureStageStateCaptured[stage][state])
137 device->SetTextureStageState(stage, (D3DTEXTURESTAGESTATETYPE)state, textureStageState[stage][state])
    [all...]
  /external/mesa3d/src/compiler/glsl/
glsl_to_nir.h 37 gl_shader_stage stage,
  /external/mesa3d/src/mesa/tnl/
t_vb_points.c 41 #define POINT_STAGE_DATA(stage) ((struct point_stage_data *)stage->privatePtr)
51 run_point_stage(struct gl_context *ctx, struct tnl_pipeline_stage *stage)
54 struct point_stage_data *store = POINT_STAGE_DATA(stage);
81 alloc_point_data(struct gl_context *ctx, struct tnl_pipeline_stage *stage)
85 stage->privatePtr = malloc(sizeof(*store));
86 store = POINT_STAGE_DATA(stage);
96 free_point_data(struct tnl_pipeline_stage *stage)
98 struct point_stage_data *store = POINT_STAGE_DATA(stage);
102 stage->privatePtr = NULL
    [all...]
t_vb_texmat.c 51 #define TEXMAT_STAGE_DATA(stage) ((struct texmat_stage_data *)stage->privatePtr)
56 struct tnl_pipeline_stage *stage )
58 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage);
82 /* Called the first time stage->run() is invoked.
85 struct tnl_pipeline_stage *stage )
91 stage->privatePtr = calloc(1, sizeof(*store));
92 store = TEXMAT_STAGE_DATA(stage);
103 static void free_texmat_data( struct tnl_pipeline_stage *stage )
105 struct texmat_stage_data *store = TEXMAT_STAGE_DATA(stage);
    [all...]

Completed in 573 milliseconds

1 2 3 4 5 6 7 8 91011>>