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

  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_urb.c 53 int nr_vs_entries, nr_gs_entries; local
60 nr_gs_entries = (total_urb_size/2) / (gs_size * 128);
63 nr_gs_entries = 0;
70 if (nr_gs_entries > devinfo->urb.max_entries[MESA_SHADER_GEOMETRY])
71 nr_gs_entries = devinfo->urb.max_entries[MESA_SHADER_GEOMETRY];
75 brw->urb.nr_gs_entries = ROUND_DOWN_TO(nr_gs_entries, 4);
80 assert(brw->urb.nr_gs_entries % 4 == 0);
89 ((brw->urb.nr_gs_entries) << GEN6_URB_GS_ENTRIES_SHIFT));
brw_gs_state.c 71 gs->thread4.nr_urb_entries = brw->urb.nr_gs_entries;
74 if (brw->urb.nr_gs_entries >= 8)
brw_urb.c 104 brw->urb.clip_start = brw->urb.gs_start + brw->urb.nr_gs_entries * brw->urb.vsize;
143 brw->urb.nr_gs_entries = limits[GS].preferred_nr_entries;
172 brw->urb.nr_gs_entries = limits[GS].min_nr_entries;
brw_context.h 949 GLuint nr_gs_entries; member in struct:brw_context::__anon30418
    [all...]

Completed in 97 milliseconds