Searched defs:stage (Results 1 - 25 of 134) sorted by relevance

123456

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pipe_util.c40 draw_pipe_passthrough_point(struct draw_stage *stage, struct prim_header *header) argument
42 stage->next->point(stage->next, header);
46 draw_pipe_passthrough_line(struct draw_stage *stage, struct prim_header *header) argument
48 stage->next->line(stage->next, header);
52 draw_pipe_passthrough_tri(struct draw_stage *stage, struct prim_header *header) argument
54 stage->next->tri(stage->next, header);
69 boolean draw_alloc_temp_verts( struct draw_stage *stage, unsigne argument
114 struct draw_stage *stage = draw->pipeline.first; local
[all...]
H A Ddraw_pipe_twoside.c39 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, argument
79 struct twoside_stage *twoside = twoside_stage(stage);
93 stage->next->tri( stage->next, &tmp );
96 stage->next->tri( stage
102 twoside_first_tri( struct draw_stage *stage, struct prim_header *header ) argument
142 twoside_flush( struct draw_stage *stage, unsigned flags ) argument
[all...]
H A Ddraw_pipe.h59 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, argument
[all...]
H A Ddraw_pipe_cull.c29 * \brief Drawing stage for polygon culling
42 struct draw_stage stage; member in struct:cull_stage
48 static INLINE struct cull_stage *cull_stage( struct draw_stage *stage )
50 return (struct cull_stage *)stage;
54 static void cull_tri( struct draw_stage *stage, argument
57 const unsigned pos = draw_current_shader_position_output(stage->draw);
78 unsigned face = ((ccw == cull_stage(stage)->front_ccw) ?
82 if ((face & cull_stage(stage)->cull_face) == 0) {
83 /* triangle is not culled, pass to next stage */
84 stage
90 cull_first_tri( struct draw_stage *stage, struct prim_header *header ) argument
103 cull_flush( struct draw_stage *stage, unsigned flags ) argument
[all...]
H A Ddraw_pipe_unfilled.c29 * \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, argument
65 stage->next->point( stage->next, &tmp );
68 static void line( struct draw_stage *stage, argument
75 stage->next->line( stage
79 points( struct draw_stage *stage, struct prim_header *header ) argument
92 lines( struct draw_stage *stage, struct prim_header *header ) argument
133 unfilled_tri( struct draw_stage *stage, struct prim_header *header ) argument
159 unfilled_first_tri( struct draw_stage *stage, struct prim_header *header ) argument
174 unfilled_flush( struct draw_stage *stage, unsigned flags ) argument
[all...]
H A Ddraw_pipe_validate.c158 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, argument
292 struct draw_stage *pipeline = validate_pipeline( stage );
296 static void validate_line( struct draw_stage *stage, argument
303 validate_point( struct draw_stage *stage, struct prim_header *header ) argument
316 validate_flush( struct draw_stage *stage, unsigned flags ) argument
337 struct draw_stage *stage = CALLOC_STRUCT(draw_stage); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_draw.c28 struct draw_stage stage; member in struct:nv50_render_stage
33 nv50_render_stage(struct draw_stage *stage) argument
35 return (struct nv50_render_stage *)stage;
39 nv50_render_point(struct draw_stage *stage, struct prim_header *prim) argument
45 nv50_render_line(struct draw_stage *stage, struct prim_header *prim) argument
51 nv50_render_tri(struct draw_stage *stage, struct prim_header *prim) argument
57 nv50_render_flush(struct draw_stage *stage, unsigned flags) argument
62 nv50_render_reset_stipple_counter(struct draw_stage *stage) argument
68 nv50_render_destroy(struct draw_stage *stage) argument
70 FREE(stage);
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
H A Dnvc0_draw.c28 struct draw_stage stage; member in struct:nvc0_render_stage
33 nvc0_render_stage(struct draw_stage *stage) argument
35 return (struct nvc0_render_stage *)stage;
39 nvc0_render_point(struct draw_stage *stage, struct prim_header *prim) argument
45 nvc0_render_line(struct draw_stage *stage, struct prim_header *prim) argument
51 nvc0_render_tri(struct draw_stage *stage, struct prim_header *prim) argument
57 nvc0_render_flush(struct draw_stage *stage, unsigned flags) argument
62 nvc0_render_reset_stipple_counter(struct draw_stage *stage) argument
68 nvc0_render_destroy(struct draw_stage *stage) argument
70 FREE(stage);
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vb_normals.c46 #define NORMAL_STAGE_DATA(stage) ((struct normal_stage_data *)stage->privatePtr)
50 run_normal_stage(struct gl_context *ctx, struct tnl_pipeline_stage *stage) argument
52 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage);
92 validate_normal_stage(struct gl_context *ctx, struct tnl_pipeline_stage *stage) argument
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) argument
154 stage->privatePtr = malloc(sizeof(*store));
155 store = NORMAL_STAGE_DATA(stage);
168 free_normal_data(struct tnl_pipeline_stage *stage) argument
[all...]
/external/chromium_org/third_party/skia/tests/
H A DObjectPoolTest.cpp23 const char* stage,
27 stage, pool.available(), available);
32 stage, pool.blocks(), blocks);
21 verifyPool(skiatest::Reporter* reporter, const ObjectPoolType& pool, const char* stage, int available, int blocks) argument
H A DSListTest.cpp20 const char* stage) {
23 ERRORF(reporter, "%s - List not empty", stage);
27 ERRORF(reporter, "%s - List count is not zero, %d instead", stage, list.getCount());
31 ERRORF(reporter, "%s - List has elements when empty", stage);
39 const char* stage,
43 ERRORF(reporter, "%s - List was too short, %d instead of %d", stage, list.getCount(), count);
49 ERRORF(reporter, "%s - List too short, should be %d", stage, count);
53 ERRORF(reporter, "%s - List entries at index %d of %d don't match", stage, index, count);
59 ERRORF(reporter, "%s - List too long, should be %d", stage, count);
18 verifyEmptyList(skiatest::Reporter* reporter, const SkTInternalSList<SListEntry>& list, const char* stage) argument
37 verifyList(skiatest::Reporter* reporter, const SkTInternalSList<SListEntry>& list, const char* stage, SListEntry* start, int count, int step = 1) argument
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Dgain_quant.c29 int16_t stage, /* (i) The stage of the search */
45 cb = WebRtcIlbcfix_kGain[stage];
46 cblen = 32>>stage;
47 noChecks = 4-stage;
26 WebRtcIlbcfix_GainQuant( int16_t gain, int16_t maxIn, int16_t stage, int16_t *index ) argument
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_util.c40 draw_pipe_passthrough_point(struct draw_stage *stage, struct prim_header *header) argument
42 stage->next->point(stage->next, header);
46 draw_pipe_passthrough_line(struct draw_stage *stage, struct prim_header *header) argument
48 stage->next->line(stage->next, header);
52 draw_pipe_passthrough_tri(struct draw_stage *stage, struct prim_header *header) argument
54 stage->next->tri(stage->next, header);
69 boolean draw_alloc_temp_verts( struct draw_stage *stage, unsigne argument
114 struct draw_stage *stage = draw->pipeline.first; local
[all...]
H A Ddraw_pipe_twoside.c39 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, argument
79 struct twoside_stage *twoside = twoside_stage(stage);
93 stage->next->tri( stage->next, &tmp );
96 stage->next->tri( stage
102 twoside_first_tri( struct draw_stage *stage, struct prim_header *header ) argument
142 twoside_flush( struct draw_stage *stage, unsigned flags ) argument
[all...]
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_draw.c28 struct draw_stage stage; member in struct:nv50_render_stage
33 nv50_render_stage(struct draw_stage *stage) argument
35 return (struct nv50_render_stage *)stage;
39 nv50_render_point(struct draw_stage *stage, struct prim_header *prim) argument
45 nv50_render_line(struct draw_stage *stage, struct prim_header *prim) argument
51 nv50_render_tri(struct draw_stage *stage, struct prim_header *prim) argument
57 nv50_render_flush(struct draw_stage *stage, unsigned flags) argument
62 nv50_render_reset_stipple_counter(struct draw_stage *stage) argument
68 nv50_render_destroy(struct draw_stage *stage) argument
70 FREE(stage);
[all...]
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_draw.c28 struct draw_stage stage; member in struct:nvc0_render_stage
33 nvc0_render_stage(struct draw_stage *stage) argument
35 return (struct nvc0_render_stage *)stage;
39 nvc0_render_point(struct draw_stage *stage, struct prim_header *prim) argument
45 nvc0_render_line(struct draw_stage *stage, struct prim_header *prim) argument
51 nvc0_render_tri(struct draw_stage *stage, struct prim_header *prim) argument
57 nvc0_render_flush(struct draw_stage *stage, unsigned flags) argument
62 nvc0_render_reset_stipple_counter(struct draw_stage *stage) argument
68 nvc0_render_destroy(struct draw_stage *stage) argument
70 FREE(stage);
[all...]
/external/mesa3d/src/mesa/tnl/
H A Dt_vb_normals.c46 #define NORMAL_STAGE_DATA(stage) ((struct normal_stage_data *)stage->privatePtr)
50 run_normal_stage(struct gl_context *ctx, struct tnl_pipeline_stage *stage) argument
52 struct normal_stage_data *store = NORMAL_STAGE_DATA(stage);
92 validate_normal_stage(struct gl_context *ctx, struct tnl_pipeline_stage *stage) argument
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) argument
154 stage->privatePtr = malloc(sizeof(*store));
155 store = NORMAL_STAGE_DATA(stage);
168 free_normal_data(struct tnl_pipeline_stage *stage) argument
[all...]
/external/skia/include/gpu/
H A DGrDrawEffect.h21 GrDrawEffect(const GrEffectStage& stage, bool explicitLocalCoords) argument
22 : fEffectStage(&stage)
/external/skia/tests/
H A DObjectPoolTest.cpp23 const char* stage,
27 stage, pool.available(), available);
32 stage, pool.blocks(), blocks);
21 verifyPool(skiatest::Reporter* reporter, const ObjectPoolType& pool, const char* stage, int available, int blocks) argument
H A DSListTest.cpp20 const char* stage) {
23 ERRORF(reporter, "%s - List not empty", stage);
27 ERRORF(reporter, "%s - List count is not zero, %d instead", stage, list.getCount());
31 ERRORF(reporter, "%s - List has elements when empty", stage);
39 const char* stage,
43 ERRORF(reporter, "%s - List was too short, %d instead of %d", stage, list.getCount(), count);
49 ERRORF(reporter, "%s - List too short, should be %d", stage, count);
53 ERRORF(reporter, "%s - List entries at index %d of %d don't match", stage, index, count);
59 ERRORF(reporter, "%s - List too long, should be %d", stage, count);
18 verifyEmptyList(skiatest::Reporter* reporter, const SkTInternalSList<SListEntry>& list, const char* stage) argument
37 verifyList(skiatest::Reporter* reporter, const SkTInternalSList<SListEntry>& list, const char* stage, SListEntry* start, int count, int step = 1) argument
/external/chromium_org/extensions/browser/api/declarative_webrequest/
H A Dwebrequest_condition.h25 WebRequestData(net::URLRequest* request, RequestStage stage);
28 RequestStage stage,
34 // The stage (progress) of the network request.
35 RequestStage stage; member in struct:extensions::WebRequestData
95 // contains a 1 for each request stage during which the condition can be
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_quad_fs.c52 struct quad_stage stage; /**< base class */ member in struct:quad_shade_stage
169 qss->stage.softpipe = softpipe;
170 qss->stage.begin = shade_begin;
171 qss->stage.run = shade_quads;
172 qss->stage.destroy = shade_destroy;
174 return &qss->stage;
H A Dsp_quad_stipple.c3 * 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/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_quad_fs.c52 struct quad_stage stage; /**< base class */ member in struct:quad_shade_stage
169 qss->stage.softpipe = softpipe;
170 qss->stage.begin = shade_begin;
171 qss->stage.run = shade_quads;
172 qss->stage.destroy = shade_destroy;
174 return &qss->stage;
H A Dsp_quad_stipple.c3 * 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;

Completed in 3900 milliseconds

123456