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

  /external/mesa3d/src/mesa/tnl/
t_vb_vertex.c 46 GLubyte *clipmask; member in struct:vertex_stage_data
63 GLubyte *clipmask, \
87 clipmask[i] |= CLIP_USER_BIT; \
182 * the clipmask.
191 store->clipmask,
200 store->clipmask,
210 /* Test userclip planes. This contributes to VB->ClipMask, so
216 store->clipmask,
226 VB->ClipMask = store->clipmask;
    [all...]
t_vb_program.c 69 GLubyte *clipmask; /**< clip flags */ member in struct:vp_stage_data
84 GLubyte *clipmask,
109 clipmask[i] |= CLIP_USER_BIT;
133 * the clipmask.
144 store->clipmask,
153 store->clipmask,
164 /* Test userclip planes. This contributes to VB->ClipMask.
171 store->clipmask,
182 VB->ClipMask = store->clipmask;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_clip.c 128 dst->clipmask = 0;
299 unsigned clipmask )
330 while (clipmask && n >= 3) {
331 const unsigned plane_idx = ffs(clipmask)-1;
339 clipmask &= ~(1<<plane_idx);
468 unsigned clipmask )
477 while (clipmask) {
478 const unsigned plane_idx = ffs(clipmask)-1;
495 clipmask &= ~(1 << plane_idx); /* turn off this plane's bit */
498 if (v0->clipmask) {
532 unsigned clipmask = (header->v[0]->clipmask | local
551 unsigned clipmask = (header->v[0]->clipmask | local
    [all...]
draw_llvm.c 253 LP_CHECK_MEMBER_OFFSET(struct vertex_header, clipmask,
612 LLVMValueRef clipmask,
643 /* OR with the clipmask */
644 cliptmp = LLVMBuildOr(builder, val, clipmask, "");
650 lp_build_printf(gallivm, "io = %p, index %d\n, clipmask = %x\n",
667 LLVMValueRef clipmask,
720 clipmask, have_clipdist);
848 * Returns clipmask as nxi32 bitmask for the n vertices
1200 LLVMValueRef clipmask; \/* holds the clipmask value *\/ local
    [all...]
draw_private.h 74 unsigned clipmask:DRAW_TOTAL_CLIP_PLANES; member in struct:vertex_header

Completed in 643 milliseconds