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

  /external/mesa3d/src/intel/compiler/
gen6_gs_visitor.h 82 src_reg svbi; member in class:brw::gen6_gs_visitor
gen6_gs_visitor.cpp 105 this->svbi = src_reg(this, glsl_type::uvec4_type);
106 /* Create a virtual register to hold max values of SVBI */
362 dst_reg(this->svbi),
367 dst_reg(this->temp), this->prim_count, this->svbi);
604 emit(ADD(dst_reg(sol_temp), this->svbi, brw_imm_ud(num_verts)));
606 /* Compare SVBI calculated number with the maximum value, which is
621 this->svbi));
650 emit(ADD(dst_reg(sol_temp), sol_temp, this->svbi));
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_sol.c 418 /* Initialize the SVBI 0 register to zero and set the maximum index. */
421 OUT_BATCH(0); /* SVBI 0 */
497 /* Reload SVBI 0 with the count of vertices written so far. */
498 uint64_t svbi; local
499 compute_vertices_written_so_far(brw, brw_obj, &brw_obj->counter, &svbi);
503 OUT_BATCH(0); /* SVBI 0 */
504 OUT_BATCH((uint32_t) svbi); /* starting index */

Completed in 93 milliseconds