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

1 2 3

  /external/mesa3d/src/gallium/auxiliary/draw/
draw_context.h 45 struct draw_context;
65 struct draw_context *draw_create( struct pipe_context *pipe );
67 struct draw_context *draw_create_no_llvm(struct pipe_context *pipe);
69 void draw_destroy( struct draw_context *draw );
71 void draw_flush(struct draw_context *draw);
73 void draw_set_viewport_state( struct draw_context *draw,
76 void draw_set_clip_state( struct draw_context *pipe,
94 void draw_set_rasterizer_state( struct draw_context *draw,
98 void draw_set_rasterize_stage( struct draw_context *draw,
101 void draw_wide_point_threshold(struct draw_context *draw, float threshold)
    [all...]
draw_fs.c 38 #include "draw_context.h"
42 draw_create_fragment_shader(struct draw_context *draw,
58 draw_bind_fragment_shader(struct draw_context *draw,
68 draw_delete_fragment_shader(struct draw_context *draw,
draw_pipe.h 57 struct draw_context *draw; /**< parent context */
83 extern struct draw_stage *draw_unfilled_stage( struct draw_context *context );
84 extern struct draw_stage *draw_twoside_stage( struct draw_context *context );
85 extern struct draw_stage *draw_offset_stage( struct draw_context *context );
86 extern struct draw_stage *draw_clip_stage( struct draw_context *context );
87 extern struct draw_stage *draw_flatshade_stage( struct draw_context *context );
88 extern struct draw_stage *draw_cull_stage( struct draw_context *context );
89 extern struct draw_stage *draw_stipple_stage( struct draw_context *context );
90 extern struct draw_stage *draw_wide_line_stage( struct draw_context *context );
91 extern struct draw_stage *draw_wide_point_stage( struct draw_context *context )
    [all...]
draw_gs.h 31 #include "draw_context.h"
37 struct draw_context;
43 struct draw_context *draw;
83 struct draw_context *draw);
draw_private.h 61 struct draw_context;
97 struct draw_context struct
361 boolean draw_init(struct draw_context *draw);
366 boolean draw_vs_init( struct draw_context *draw );
367 void draw_vs_destroy( struct draw_context *draw );
369 void draw_vs_set_viewport( struct draw_context *,
373 draw_vs_set_constants(struct draw_context *,
383 boolean draw_gs_init( struct draw_context *draw );
386 draw_gs_set_constants(struct draw_context *,
391 void draw_gs_destroy( struct draw_context *draw )
    [all...]
draw_vs.h 34 #include "draw_context.h"
39 struct draw_context;
105 struct draw_context *draw;
130 struct draw_context *draw );
159 draw_create_vs_exec(struct draw_context *draw,
163 draw_create_vs_ppc(struct draw_context *draw,
172 draw_create_vs_llvm(struct draw_context *draw,
184 struct translate *draw_vs_get_fetch( struct draw_context *draw,
188 struct translate *draw_vs_get_emit( struct draw_context *draw,
draw_pt.h 39 struct draw_context;
135 struct draw_pt_front_end *draw_pt_vsplit(struct draw_context *draw);
148 struct draw_pt_middle_end *draw_pt_fetch_emit( struct draw_context *draw );
149 struct draw_pt_middle_end *draw_pt_middle_fse( struct draw_context *draw );
150 struct draw_pt_middle_end *draw_pt_fetch_pipeline_or_emit(struct draw_context *draw);
151 struct draw_pt_middle_end *draw_pt_fetch_pipeline_or_emit_llvm(struct draw_context *draw);
174 struct pt_emit *draw_pt_emit_create( struct draw_context *draw );
189 struct pt_so_emit *draw_pt_so_emit_create( struct draw_context *draw );
213 struct pt_fetch *draw_pt_fetch_create( struct draw_context *draw );
232 struct pt_post_vs *draw_pt_post_vs_create( struct draw_context *draw )
    [all...]
draw_context.c 39 #include "draw_context.h"
72 static struct draw_context *
75 struct draw_context *draw = CALLOC_STRUCT( draw_context );
104 struct draw_context *
114 struct draw_context *
121 boolean draw_init(struct draw_context *draw)
159 void draw_destroy( struct draw_context *draw )
203 void draw_flush( struct draw_context *draw )
216 void draw_set_mrd(struct draw_context *draw, double mrd
    [all...]
draw_vbuf.h 44 struct draw_context;
74 * XXX: have this in draw_context instead?
134 draw_vbuf_stage( struct draw_context *draw,
draw_vs.c 40 #include "draw_context.h"
59 draw_vs_set_constants(struct draw_context *draw,
93 void draw_vs_set_viewport( struct draw_context *draw,
101 draw_create_vertex_shader(struct draw_context *draw,
152 draw_bind_vertex_shader(struct draw_context *draw,
176 draw_delete_vertex_shader(struct draw_context *draw,
192 draw_vs_init( struct draw_context *draw )
212 draw_vs_destroy( struct draw_context *draw )
270 draw_vs_get_fetch( struct draw_context *draw,
284 draw_vs_get_emit( struct draw_context *draw
    [all...]
draw_pipe.c 39 boolean draw_pipeline_init( struct draw_context *draw )
77 void draw_pipeline_destroy( struct draw_context *draw )
114 static void do_point( struct draw_context *draw,
131 static void do_line( struct draw_context *draw,
151 static void do_triangle( struct draw_context *draw,
200 struct draw_context *draw, \
224 void draw_pipeline_run( struct draw_context *draw,
297 struct draw_context *draw, \
310 void draw_pipeline_run_linear( struct draw_context *draw,
343 void draw_pipeline_flush( struct draw_context *draw,
    [all...]
draw_llvm.h 251 struct draw_context *draw;
268 draw_llvm_create(struct draw_context *draw);
289 draw_llvm_set_sampler_state(struct draw_context *draw);
292 draw_llvm_set_mapped_texture(struct draw_context *draw,
draw_vs_llvm.c 34 #include "draw_context.h"
43 struct draw_context *draw)
84 draw_create_vs_llvm(struct draw_context *draw,
draw_pt.c 33 #include "draw/draw_context.h"
55 draw_pt_arrays(struct draw_context *draw,
147 void draw_pt_flush( struct draw_context *draw, unsigned flags )
160 boolean draw_pt_init( struct draw_context *draw )
190 void draw_pt_destroy( struct draw_context *draw )
223 draw_print_arrays(struct draw_context *draw, uint prim, int start, uint count)
354 draw_pt_arrays_restart(struct draw_context *draw,
408 draw_arrays(struct draw_context *draw, unsigned prim,
420 draw_arrays_instanced(struct draw_context *draw,
451 draw_vbo(struct draw_context *draw
    [all...]
draw_pt_emit.c 29 #include "draw/draw_context.h"
38 struct draw_context *draw;
54 struct draw_context *draw = emit->draw;
129 struct draw_context *draw = emit->draw;
199 struct draw_context *draw = emit->draw;
271 draw_pt_emit_create(struct draw_context *draw)
draw_pt_fetch.c 31 #include "draw/draw_context.h"
39 struct draw_context *draw;
65 struct draw_context *draw = fetch->draw;
155 struct draw_context *draw = fetch->draw;
182 struct draw_context *draw = fetch->draw;
204 draw_pt_fetch_create(struct draw_context *draw)
draw_pt_so_emit.c 30 #include "draw/draw_context.h"
41 struct draw_context *draw;
56 struct draw_context *draw = emit->draw;
88 struct draw_context *draw = so->draw;
189 struct draw_context *draw = emit->draw;
226 struct pt_so_emit *draw_pt_so_emit_create( struct draw_context *draw )
draw_pt_vsplit.c 30 #include "draw/draw_context.h"
39 struct draw_context *draw;
88 struct draw_context *draw = vsplit->draw;
198 struct draw_pt_front_end *draw_pt_vsplit(struct draw_context *draw)
draw_vs_ppc.c 45 #include "draw_context.h"
73 struct draw_context *draw )
171 draw_create_vs_ppc(struct draw_context *draw,
233 draw_create_vs_ppc( struct draw_context *draw,
draw_pt_fetch_emit.c 34 #include "draw/draw_context.h"
77 struct draw_context *draw;
96 struct draw_context *draw = feme->draw;
191 struct draw_context *draw = feme->draw;
249 struct draw_context *draw = feme->draw;
308 struct draw_context *draw = feme->draw;
366 struct draw_pt_middle_end *draw_pt_fetch_emit( struct draw_context *draw )
draw_pt_fetch_shade_emit.c 36 #include "draw/draw_context.h"
51 struct draw_context *draw;
75 struct draw_context *draw = fse->draw;
189 struct draw_context *draw = fse->draw;
253 struct draw_context *draw = fse->draw;
311 struct draw_context *draw = fse->draw;
362 draw_pt_middle_fse(struct draw_context *draw)
  /external/mesa3d/src/mesa/state_tracker/
st_cb_feedback.c 54 #include "draw/draw_context.h"
83 feedback_vertex(struct gl_context *ctx, const struct draw_context *draw,
122 struct draw_context *draw = stage->draw;
135 struct draw_context *draw = stage->draw;
152 struct draw_context *draw = stage->draw;
183 draw_glfeedback_stage(struct gl_context *ctx, struct draw_context *draw)
256 draw_glselect_stage(struct gl_context *ctx, struct draw_context *draw)
278 struct draw_context *draw = st->draw;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_context.h 46 struct draw_context;
123 struct draw_context *draw;
lp_setup.h 33 struct draw_context;
54 struct draw_context *draw );
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_context.h 49 struct draw_context;
167 struct draw_context *draw;

Completed in 210 milliseconds

1 2 3