HomeSort by relevance Sort by last modified time
    Searched defs:prim_count (Results 1 - 7 of 7) sorted by null

  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_gs_visitor.h 77 src_reg prim_count; member in class:brw::gen6_gs_visitor
  /external/mesa3d/src/gallium/drivers/svga/
svga_draw_private.h 67 svga_translate_prim(unsigned mode, unsigned vcount, unsigned *prim_count)
71 *prim_count = vcount;
75 *prim_count = vcount / 2;
79 *prim_count = vcount - 1;
83 *prim_count = vcount / 3;
87 *prim_count = vcount - 2;
91 *prim_count = vcount - 2;
95 *prim_count = vcount / 4;
99 *prim_count = vcount - 3;
103 *prim_count = vcount / 6
147 unsigned prim_count; \/**< number of primitives for this draw *\/ member in struct:draw_cmd
    [all...]
  /external/mesa3d/src/mesa/main/
api_validate.c 847 size_t prim_count = vbo_count_tessellated_primitives(mode, count, 1); local
848 if (xfb_obj->GlesRemainingPrims < prim_count) {
853 xfb_obj->GlesRemainingPrims -= prim_count;
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_exec.h 93 GLuint prim_count; member in struct:vbo_exec_context::__anon30645
vbo_save.h 83 GLuint prim_count; member in struct:vbo_save_vertex_list
144 GLuint prim_count, prim_max; member in struct:vbo_save_context
174 GLuint prim_count,
  /frameworks/native/opengl/libagl/
array.cpp 403 uint32_t prim_count; local
405 case GL_POINTS: prim_count = total; break;
406 case GL_LINE_STRIP: prim_count = total - 1; break;
407 case GL_LINE_LOOP: prim_count = total - 1; break;
408 case GL_LINES: prim_count = total / 2; break;
409 case GL_TRIANGLE_STRIP: prim_count = total - 2; break;
410 case GL_TRIANGLE_FAN: prim_count = total - 2; break;
411 case GL_TRIANGLES: prim_count = total / 3; break;
417 prim_count, int(ns2us(time)), int(prim_count*float(seconds(1))/time)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_exec.c 2138 unsigned *prim_count = &mach->Temps[TEMP_PRIMITIVE_I].xyzw[TEMP_PRIMITIVE_C].u[0]; local
    [all...]

Completed in 2075 milliseconds