Searched refs:hw_prim (Results 1 - 24 of 24) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/r200/
H A Dr200_tcl.h40 extern void r200TclPrimitive( struct gl_context *ctx, GLenum prim, int hw_prim );
H A Dr200_tcl.c107 #define ELT_INIT(prim, hw_prim) \
108 r200TclPrimitive( ctx, prim, hw_prim | R200_VF_PRIM_WALK_IND )
259 int hw_prim )
262 GLuint newprim = hw_prim | R200_VF_TCL_OUTPUT_VTX_ENABLE;
269 !discrete_prim[hw_prim&0xf]) {
257 r200TclPrimitive(struct gl_context * ctx,GLenum prim,int hw_prim) argument
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/
H A Dradeon_tcl.h41 extern void radeonTclPrimitive( struct gl_context *ctx, GLenum prim, int hw_prim );
H A Dradeon_tcl.c113 #define ELT_INIT(prim, hw_prim) \
114 radeonTclPrimitive( ctx, prim, hw_prim | RADEON_CP_VC_CNTL_PRIM_WALK_IND )
251 int hw_prim )
255 GLuint newprim = hw_prim | RADEON_CP_VC_CNTL_TCL_ENABLE;
262 !discrete_prim[hw_prim&0xf]) {
249 radeonTclPrimitive(struct gl_context * ctx,GLenum prim,int hw_prim) argument
H A Dradeon_swtcl.c360 static const GLuint hw_prim[GL_POLYGON+1] = { variable in typeref:typename:const GLuint[]
377 rmesa->radeon.swtcl.hw_primitive = hw_prim[prim];
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/r200/
H A Dr200_tcl.h40 extern void r200TclPrimitive( struct gl_context *ctx, GLenum prim, int hw_prim );
H A Dr200_tcl.c107 #define ELT_INIT(prim, hw_prim) \
108 r200TclPrimitive( ctx, prim, hw_prim | R200_VF_PRIM_WALK_IND )
259 int hw_prim )
262 GLuint newprim = hw_prim | R200_VF_TCL_OUTPUT_VTX_ENABLE;
269 !discrete_prim[hw_prim&0xf]) {
257 r200TclPrimitive(struct gl_context * ctx,GLenum prim,int hw_prim) argument
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/
H A Dradeon_tcl.h41 extern void radeonTclPrimitive( struct gl_context *ctx, GLenum prim, int hw_prim );
H A Dradeon_tcl.c112 #define ELT_INIT(prim, hw_prim) \
113 radeonTclPrimitive( ctx, prim, hw_prim | RADEON_CP_VC_CNTL_PRIM_WALK_IND )
250 int hw_prim )
254 GLuint newprim = hw_prim | RADEON_CP_VC_CNTL_TCL_ENABLE;
261 !discrete_prim[hw_prim&0xf]) {
248 radeonTclPrimitive(struct gl_context * ctx,GLenum prim,int hw_prim) argument
H A Dradeon_swtcl.c359 static const GLuint hw_prim[GL_POLYGON+1] = { variable in typeref:typename:const GLuint[]
376 rmesa->radeon.swtcl.hw_primitive = hw_prim[prim];
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/i915/
H A Di915_state_inlines.h214 static inline boolean i915_validate_vertices( unsigned hw_prim, unsigned nr ) argument
218 switch (hw_prim) {
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/i915/
H A Di915_state_inlines.h211 i915_validate_vertices(unsigned hw_prim, unsigned nr) argument
215 switch (hw_prim) {
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
H A Dbrw_draw.c85 uint32_t hw_prim = get_hw_prim_for_gl_prim(prim->mode); local in function:brw_set_prim
95 hw_prim = _3DPRIM_TRISTRIP;
101 hw_prim = _3DPRIM_TRIFAN;
104 if (hw_prim != brw->primitive) {
105 brw->primitive = hw_prim;
119 uint32_t hw_prim; local in function:gen6_set_prim
124 hw_prim = _3DPRIM_PATCHLIST(ctx->TessCtrlProgram.patch_vertices);
126 hw_prim = get_hw_prim_for_gl_prim(prim->mode);
129 if (hw_prim != brw->primitive) {
130 brw->primitive = hw_prim;
159 brw_emit_prim(struct brw_context * brw,const struct _mesa_prim * prim,uint32_t hw_prim,struct brw_transform_feedback_object * xfb_obj,unsigned stream) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
H A Dsvga_draw_arrays.c181 unsigned hw_prim; local in function:simple_draw_arrays
184 hw_prim = svga_translate_prim(prim, count, &hw_count);
188 range.primType = hw_prim;
H A Dsvga_draw_elements.c160 unsigned hw_prim; local in function:svga_hwtnl_simple_draw_range_elements
164 hw_prim = svga_translate_prim(prim, count, &hw_count);
168 range.primType = hw_prim;
H A Dsvga_context.h462 unsigned hw_prim; member in struct:svga_context::__anon129ac23c0608
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/
H A Dsvga_draw_arrays.c182 unsigned hw_prim; local in function:simple_draw_arrays
185 hw_prim = svga_translate_prim(prim, count, &hw_count, vertices_per_patch);
189 range.primType = hw_prim;
H A Dsvga_draw_elements.c194 unsigned hw_prim; local in function:svga_hwtnl_simple_draw_range_elements
198 hw_prim = svga_translate_prim(prim, count, &hw_count, vertices_per_patch);
202 range.primType = hw_prim;
H A Dsvga_context.h497 unsigned hw_prim; member in struct:svga_context::__anon9fcd83af0608
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
H A Dbrw_draw.c85 uint32_t hw_prim = get_hw_prim_for_gl_prim(prim->mode); local in function:brw_set_prim
95 hw_prim = _3DPRIM_TRISTRIP;
101 hw_prim = _3DPRIM_TRIFAN;
104 if (hw_prim != brw->primitive) {
105 brw->primitive = hw_prim;
119 uint32_t hw_prim; local in function:gfx6_set_prim
124 hw_prim = _3DPRIM_PATCHLIST(ctx->TessCtrlProgram.patch_vertices);
126 hw_prim = get_hw_prim_for_gl_prim(prim->mode);
129 if (hw_prim != brw->primitive) {
130 brw->primitive = hw_prim;
159 brw_emit_prim(struct brw_context * brw,const struct _mesa_prim * prim,uint32_t hw_prim,bool is_indexed,GLuint num_instances,GLuint base_instance,struct brw_transform_feedback_object * xfb_obj,unsigned stream,bool is_indirect,GLsizeiptr indirect_offset) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/
H A Dintel_render.c69 static const uint32_t hw_prim[GL_POLYGON + 1] = { variable in typeref:typename:const uint32_t[]
116 intel_set_prim(intel, hw_prim[prim]);
H A Dintel_tris.c669 static const GLuint hw_prim[GL_POLYGON + 1] = { variable in typeref:typename:const GLuint[]
682 #define RASTERIZE(x) intelRasterPrimitive( ctx, x, hw_prim[x] )
1167 intelRasterPrimitive(ctx, reduced_prim[prim], hw_prim[prim]);
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/
H A Dintel_render.c68 static const uint32_t hw_prim[GL_POLYGON + 1] = { variable in typeref:typename:const uint32_t[]
115 intel_set_prim(intel, hw_prim[prim]);
H A Dintel_tris.c669 static const GLuint hw_prim[GL_POLYGON + 1] = { variable in typeref:typename:const GLuint[]
682 #define RASTERIZE(x) intelRasterPrimitive( ctx, x, hw_prim[x] )
1167 intelRasterPrimitive(ctx, reduced_prim[prim], hw_prim[prim]);

Completed in 21 milliseconds