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

12 3 4

  /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::__anon24859
  /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/skia/src/gpu/
GrDrawState.cpp 155 const GrEffectStage& stage = covIdx < 0 ? fColorStages[s] : fCoverageStages[covIdx]; local
156 const GrEffectRef* effect = stage.getEffect();
161 const int* attributeIndices = stage.getVertexAttribIndices();
162 int numAttributes = stage.getVertexAttribIndexCount();
336 // check for coverage due to constant coverage, per-vertex coverage, or coverage stage
  /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/chromium_org/third_party/WebKit/Source/core/platform/audio/
ReverbConvolver.cpp 66 , m_minFFTSize(MinFFTSize) // First stage will have this size - successive stages will double in size each time
95 // For the last stage, it's possible that stageOffset is such that we're straddling the end
96 // of the impulse response buffer (if we use stageSize), so reduce the last stage's length...
105 OwnPtr<ReverbConvolverStage> stage = adoptPtr(new ReverbConvolverStage(response, totalResponseLength, reverbTotalLatency, stageOffset, stageSize, fftSize, renderPhase, renderSliceSize, &m_accumulationBuffer, useDirectConvolver)); local
110 m_backgroundStages.append(stage.release());
113 m_stages.append(stage.release());
166 // Even though it doesn't seem like every stage needs to maintain its own version of readIndex
174 // Accumulate contributions from each stage
198 // Accumulate contributions from each stage
  /external/chromium_org/third_party/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;
217 unsigned int stage[2]; /* GSUB/GPOS *
    [all...]
hb-ot-map.cc 101 info->stage[0] = current_stage[0];
102 info->stage[1] = current_stage[1];
113 const stage_map_t *stage = &stages[table_index][stage_index]; local
114 for (; i < stage->last_lookup; i++)
130 if (stage->pause_func)
133 stage->pause_func (plan, font, buffer);
197 feature_infos[j].stage[0] = MIN (feature_infos[j].stage[0], feature_infos[i].stage[0]);
198 feature_infos[j].stage[1] = MIN (feature_infos[j].stage[1], feature_infos[i].stage[1])
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
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...]
draw_pipe_aapoint.c 29 * AA point stage: AA points are converted to quads and rendered with a
86 struct draw_stage stage; member in struct:aapoint_stage
501 struct pipe_context *pipe = aapoint->stage.draw->pipe;
551 struct draw_context *draw = aapoint->stage.draw;
568 aapoint_stage( struct draw_stage *stage )
570 return (struct aapoint_stage *) stage;
580 aapoint_point(struct draw_stage *stage, struct prim_header *header)
582 const struct aapoint_stage *aapoint = aapoint_stage(stage);
632 v[i] = dup_vert(stage, header->v[0], i);
669 stage->next->tri( stage->next, &tri )
    [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_wide_point.c 66 struct draw_stage stage; /**< base class */ member in struct:widepoint_stage
83 widepoint_stage( struct draw_stage *stage )
85 return (struct widepoint_stage *)stage;
97 const struct draw_context *draw = wide->stage.draw;
120 static void widepoint_point( struct draw_stage *stage,
123 const struct widepoint_stage *wide = widepoint_stage(stage);
124 const unsigned pos = draw_current_shader_position_output(stage->draw);
125 const boolean sprite = (boolean) stage->draw->rasterizer->point_quad_rasterization;
132 struct vertex_header *v0 = dup_vert(stage, header->v[0], 0);
133 struct vertex_header *v1 = dup_vert(stage, header->v[0], 1)
    [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 <= pauses[table_index].len);
114 unsigned int start = stage ? pauses[table_index][stage - 1].num_lookups : 0;
115 unsigned int end = stage < pauses[table_index].len ? pauses[table_index][stage].num_lookups : lookups[table_index].len;
210 unsigned int stage[2]; /* GSUB/GPOS *
217 unsigned int stage; member in struct:pause_info_t
    [all...]
  /external/skia/tests/
GLProgramsTest.cpp 175 GrEffectStage* stage = SkNEW_ARGS(GrEffectStage, local
177 stages[s] = stage;
  /external/chromium/chrome/browser/ui/toolbar/
wrench_menu_model.cc 280 UpgradeDetector::UpgradeNotificationAnnoyanceLevel stage = local
282 switch (stage) {
  /external/chromium_org/content/browser/loader/
resource_loader.cc 438 DeferredStage stage = deferred_stage_; local
440 switch (stage) {

Completed in 480 milliseconds

12 3 4