Home | History | Annotate | Download | only in indices

Lines Matching full:info

35  *    if (info->mode needs emulating) {
38 * util_primconvert_draw_vbo(ctx->primconvert, info);
112 const struct pipe_draw_info *info)
126 new_info.min_index = info->min_index;
127 new_info.max_index = info->max_index;
128 new_info.index_bias = info->index_bias;
129 new_info.start_instance = info->start_instance;
130 new_info.instance_count = info->instance_count;
131 new_info.primitive_restart = info->primitive_restart;
132 new_info.restart_index = info->restart_index;
133 if (info->indexed) {
135 info->mode, pc->saved_ib.index_size, info->count,
137 info->primitive_restart ? PR_ENABLE : PR_DISABLE,
149 info->mode, info->start, info->count,
163 if (info->indexed) {
164 trans_func(src, info->start, info->count, new_info.count, info->restart_index, dst);
167 gen_func(info->start, new_info.count, dst);