HomeSort by relevance Sort by last modified time
    Searched full:restart_index (Results 1 - 25 of 40) sorted by null

1 2

  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_push.c 52 uint32_t restart_index; member in struct:push_context
96 nr = prim_restart_search_i08(elts, push, ctx->restart_index);
110 PUSH_DATA (ctx->push, ctx->restart_index);
128 nr = prim_restart_search_i16(elts, push, ctx->restart_index);
142 PUSH_DATA (ctx->push, ctx->restart_index);
160 nr = prim_restart_search_i32(elts, push, ctx->restart_index);
174 PUSH_DATA (ctx->push, ctx->restart_index);
240 ctx.restart_index = info->restart_index;
245 ctx.restart_index = 0
    [all...]
nv30_vbo.c 608 PUSH_DATA (push, info->restart_index);
610 if (info->restart_index > 65535)
620 PUSH_DATA (push, info->restart_index);
622 if (info->restart_index > 65535)
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_push.c 32 uint32_t restart_index; member in struct:push_context
78 nr = prim_restart_search_i08(elts, push, ctx->restart_index);
101 PUSH_DATA (ctx->push, ctx->restart_index);
117 nr = prim_restart_search_i16(elts, push, ctx->restart_index);
140 PUSH_DATA (ctx->push, ctx->restart_index);
156 nr = prim_restart_search_i32(elts, push, ctx->restart_index);
179 PUSH_DATA (ctx->push, ctx->restart_index);
291 ctx.restart_index = info->restart_index;
307 ctx.restart_index = 0
    [all...]
nv50_vbo.c 856 PUSH_DATA (push, info->restart_index);
858 if (info->restart_index > 65535)
868 PUSH_DATA (push, info->restart_index);
870 if (info->restart_index > 65535)
  /external/mesa3d/src/gallium/auxiliary/indices/
u_indices_gen.py 201 print ' unsigned restart_index,'
277 print ' (out+j+0)[0] = restart_index;'
278 print ' (out+j+0)[1] = restart_index;'
279 print ' (out+j+0)[2] = restart_index;'
282 print ' if (in[i + 0] == restart_index) {'
287 print ' if (in[i + 1] == restart_index) {'
292 print ' if (in[i + 2] == restart_index) {'
312 print ' (out+j+0)[0] = restart_index;'
313 print ' (out+j+0)[1] = restart_index;'
314 print ' (out+j+0)[2] = restart_index;'
    [all...]
u_primconvert.c 132 new_info.restart_index = info->restart_index;
164 trans_func(src, info->start, info->count, new_info.count, info->restart_index, dst);
u_unfilled_indices.c 40 unsigned restart_index,
54 unsigned restart_index,
64 unsigned restart_index,
u_indices.h 55 unsigned restart_index,
u_indices.c 32 unsigned restart_index,
42 unsigned restart_index,
u_unfilled_gen.py 139 print ' unsigned restart_index,'
  /external/mesa3d/src/gallium/auxiliary/util/
u_prim_restart.c 36 * except that instances of 'restart_index' are converted to 0xffff or
45 unsigned restart_index)
87 dst[i] = (src[i] == restart_index) ? 0xffff : src[i];
95 dst[i] = (src[i] == restart_index) ? 0xffff : src[i];
105 dst[i] = (src[i] == restart_index) ? 0xffffffff : src[i];
217 ((const TYPE *) src_map)[i] == info->restart_index) { \
u_prim_restart.h 50 unsigned restart_index);
u_vbuf.c     [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_primitive_restart.c 81 unsigned start, unsigned end, unsigned restart_index,
109 if (scan_index == restart_index) { \
178 GLuint restart_index = _mesa_primitive_restart_index(ctx, ib->type); local
230 0, ib->count, restart_index,
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_vbo_translate.c 21 uint32_t restart_index; member in struct:push_context
249 nR = prim_restart_search_i08(elts, nR, ctx->restart_index);
306 nR = prim_restart_search_i16(elts, nR, ctx->restart_index);
363 nR = prim_restart_search_i32(elts, nR, ctx->restart_index);
491 ctx.restart_index = info->restart_index;
502 PUSH_DATA (ctx.push, info->indexed ? 0xffffffff : info->restart_index);
  /external/mesa3d/src/gallium/drivers/etnaviv/
etnaviv_context.c 96 (info->primitive_restart && ctx->index_buffer.FE_PRIMITIVE_RESTART_INDEX != info->restart_index)) {
98 ctx->index_buffer.FE_PRIMITIVE_RESTART_INDEX = info->restart_index;
  /external/mesa3d/src/gallium/drivers/svga/
svga_pipe_draw.c 170 return info->restart_index != 0xffff;
172 return info->restart_index != 0xffffffff;
  /external/mesa3d/src/gallium/drivers/swr/
swr_draw.cpp 145 || (velems->fsState.cutIndex != info->restart_index)
148 velems->fsState.cutIndex = info->restart_index;
  /external/mesa3d/src/intel/vulkan/
gen7_cmd_buffer.c 119 cmd_buffer->state.restart_index = restart_index_for_type[indexType];
238 vf.CutIndex = cmd_buffer->state.restart_index;
gen8_cmd_buffer.c 286 vf.CutIndex = cmd_buffer->state.restart_index;
312 cmd_buffer->state.restart_index = restart_index_for_type[indexType];
  /external/mesa3d/src/mesa/state_tracker/
st_draw.c 138 info->restart_index = _mesa_primitive_restart_index(ctx, ib->type);
146 (ib->type == GL_UNSIGNED_SHORT && info->restart_index <= 0xffff) ||
147 (ib->type == GL_UNSIGNED_BYTE && info->restart_index <= 0xff))
  /external/mesa3d/src/gallium/drivers/freedreno/a3xx/
fd3_draw.c 79 info->restart_index : 0xffffffff);
  /external/mesa3d/src/gallium/drivers/freedreno/a4xx/
fd4_draw.c 63 info->restart_index : 0xffffffff);
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_draw.c 479 if ((ptr)[i] == (info)->restart_index) { \
523 if (info->restart_index < cut_index)
  /external/mesa3d/src/gallium/drivers/freedreno/a5xx/
fd5_draw.c 61 info->restart_index : 0xffffffff);

Completed in 1130 milliseconds

1 2