HomeSort by relevance Sort by last modified time
    Searched refs:hw_prim (Results 1 - 12 of 12) sorted by null

  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_tcl.h 40 extern void r200TclPrimitive( struct gl_context *ctx, GLenum prim, int hw_prim );
r200_tcl.c 107 #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]) {
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tcl.h 41 extern void radeonTclPrimitive( struct gl_context *ctx, GLenum prim, int hw_prim );
radeon_tcl.c 111 #define ELT_INIT(prim, hw_prim) \
112 radeonTclPrimitive( ctx, prim, hw_prim | RADEON_CP_VC_CNTL_PRIM_WALK_IND )
249 int hw_prim )
253 GLuint newprim = hw_prim | RADEON_CP_VC_CNTL_TCL_ENABLE;
260 !discrete_prim[hw_prim&0xf]) {
radeon_swtcl.c 359 static const GLuint hw_prim[GL_POLYGON+1] = { variable
376 rmesa->radeon.swtcl.hw_primitive = hw_prim[prim];
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_draw.c 81 uint32_t hw_prim = get_hw_prim_for_gl_prim(prim->mode); local
91 hw_prim = _3DPRIM_TRISTRIP;
97 hw_prim = _3DPRIM_TRIFAN;
100 if (hw_prim != brw->primitive) {
101 brw->primitive = hw_prim;
115 uint32_t hw_prim; local
120 hw_prim = _3DPRIM_PATCHLIST(ctx->TessCtrlProgram.patch_vertices);
122 hw_prim = get_hw_prim_for_gl_prim(prim->mode);
125 if (hw_prim != brw->primitive) {
126 brw->primitive = hw_prim;
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_state_inlines.h 214 static inline boolean i915_validate_vertices( unsigned hw_prim, unsigned nr )
218 switch (hw_prim) {
  /external/mesa3d/src/gallium/drivers/svga/
svga_draw_arrays.c 181 unsigned hw_prim; local
184 hw_prim = svga_translate_prim(prim, count, &hw_count);
188 range.primType = hw_prim;
svga_draw_elements.c 160 unsigned hw_prim; local
164 hw_prim = svga_translate_prim(prim, count, &hw_count);
168 range.primType = hw_prim;
svga_context.h 454 unsigned hw_prim; member in struct:svga_context::__anon30100
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_render.c 67 static const uint32_t hw_prim[GL_POLYGON + 1] = { variable
114 intel_set_prim(intel, hw_prim[prim]);
intel_tris.c 668 static const GLuint hw_prim[GL_POLYGON + 1] = { variable
681 #define RASTERIZE(x) intelRasterPrimitive( ctx, x, hw_prim[x] )
    [all...]

Completed in 138 milliseconds