HomeSort by relevance Sort by last modified time
    Searched defs:scissor (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
gen6_scissor_state.c 40 struct gen6_scissor_rect *scissor; local
43 scissor = brw_state_batch(brw, AUB_TRACE_SCISSOR_STATE,
44 sizeof(*scissor), 32, &scissor_state_offset);
48 /* The scissor only needs to handle the intersection of drawable and
49 * scissor rect. Clipping to the boundaries of static shared buffers
57 /* If the scissor was out of bounds and got clamped to 0
60 * anything. Instead, just provide a min > max scissor inside
63 scissor->xmin = 1;
64 scissor->xmax = 0;
65 scissor->ymin = 1
    [all...]
brw_state_dump.c 315 vp->scissor.xmin, vp->scissor.ymin);
317 vp->scissor.xmax, vp->scissor.ymax);
430 const char *name = "SCISSOR";
432 struct gen6_scissor_rect *scissor = intel->batch.bo->virtual + offset; local
435 scissor->xmin, scissor->ymin);
437 scissor->xmax, scissor->ymax)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_scissor_state.c 40 struct gen6_scissor_rect *scissor; local
43 scissor = brw_state_batch(brw, AUB_TRACE_SCISSOR_STATE,
44 sizeof(*scissor), 32, &scissor_state_offset);
48 /* The scissor only needs to handle the intersection of drawable and
49 * scissor rect. Clipping to the boundaries of static shared buffers
57 /* If the scissor was out of bounds and got clamped to 0
60 * anything. Instead, just provide a min > max scissor inside
63 scissor->xmin = 1;
64 scissor->xmax = 0;
65 scissor->ymin = 1
    [all...]
brw_state_dump.c 315 vp->scissor.xmin, vp->scissor.ymin);
317 vp->scissor.xmax, vp->scissor.ymax);
430 const char *name = "SCISSOR";
432 struct gen6_scissor_rect *scissor = intel->batch.bo->virtual + offset; local
435 scissor->xmin, scissor->ymin);
437 scissor->xmax, scissor->ymax)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_scissor.c 41 * Scissor depends on the scissor box, and the framebuffer dimensions.
46 struct pipe_scissor_state scissor; local
51 scissor.minx = 0;
52 scissor.miny = 0;
53 scissor.maxx = fb->Width;
54 scissor.maxy = fb->Height;
56 if (ctx->Scissor.Enabled) {
58 GLint xmax = MAX2(0, ctx->Scissor.X + ctx->Scissor.Width)
    [all...]
st_context.h 111 struct pipe_scissor_state scissor; member in struct:st_context::__anon15290
  /external/mesa3d/src/mesa/state_tracker/
st_atom_scissor.c 41 * Scissor depends on the scissor box, and the framebuffer dimensions.
46 struct pipe_scissor_state scissor; local
51 scissor.minx = 0;
52 scissor.miny = 0;
53 scissor.maxx = fb->Width;
54 scissor.maxy = fb->Height;
56 if (ctx->Scissor.Enabled) {
58 GLint xmax = MAX2(0, ctx->Scissor.X + ctx->Scissor.Width)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_compositor.h 80 struct pipe_scissor_state scissor; member in struct:vl_compositor_state
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_context.h 77 struct pipe_scissor_state scissor; member in struct:llvmpipe_context
lp_setup_context.h 107 struct u_rect scissor; member in struct:lp_setup_context
108 struct u_rect draw_region; /* intersection of fb & scissor */
lp_setup_line.c 669 * triangle bounding box and the scissor rect to generate the
670 * scissor planes.
681 * Note that otherwise, the scissor planes only vary in 'C' value,
686 const struct u_rect *scissor = &setup->scissor; local
690 plane[4].c = 1-scissor->x0;
695 plane[5].c = scissor->x1+1;
700 plane[6].c = 1-scissor->y0;
705 plane[7].c = scissor->y1+1;
lp_setup_tri.c 205 /* if variant is opaque and scissor doesn't effect the tile */
488 * triangle bounding box and the scissor rect to generate the
489 * scissor planes.
500 * Note that otherwise, the scissor planes only vary in 'C' value,
505 const struct u_rect *scissor = &setup->scissor; local
509 plane[3].c = 1-scissor->x0;
514 plane[4].c = scissor->x1+1;
519 plane[5].c = 1-scissor->y0;
524 plane[6].c = scissor->y1+1
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
si_state.h 78 struct si_pm4_state *scissor; member in struct:si_state::__anon14644
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_state_framebuffer.c 458 * Scissor state
464 const struct pipe_scissor_state *scissor = &svga->curr.scissor; local
467 rect.x = scissor->minx;
468 rect.y = scissor->miny;
469 rect.w = scissor->maxx - scissor->minx; /* + 1 ?? */
470 rect.h = scissor->maxy - scissor->miny; /* + 1 ?? */
478 "hw scissor state"
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_compositor.h 80 struct pipe_scissor_state scissor; member in struct:vl_compositor_state
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_context.h 77 struct pipe_scissor_state scissor; member in struct:llvmpipe_context
lp_setup_context.h 107 struct u_rect scissor; member in struct:lp_setup_context
108 struct u_rect draw_region; /* intersection of fb & scissor */
lp_setup_line.c 669 * triangle bounding box and the scissor rect to generate the
670 * scissor planes.
681 * Note that otherwise, the scissor planes only vary in 'C' value,
686 const struct u_rect *scissor = &setup->scissor; local
690 plane[4].c = 1-scissor->x0;
695 plane[5].c = scissor->x1+1;
700 plane[6].c = 1-scissor->y0;
705 plane[7].c = scissor->y1+1;
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_state.h 78 struct si_pm4_state *scissor; member in struct:si_state::__anon24986
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_framebuffer.c 458 * Scissor state
464 const struct pipe_scissor_state *scissor = &svga->curr.scissor; local
467 rect.x = scissor->minx;
468 rect.y = scissor->miny;
469 rect.w = scissor->maxx - scissor->minx; /* + 1 ?? */
470 rect.h = scissor->maxy - scissor->miny; /* + 1 ?? */
478 "hw scissor state"
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_context.h 81 struct pipe_scissor_state scissor; member in struct:softpipe_context
134 /** Derived from scissor and surface bounds: */
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_context.h 81 struct pipe_scissor_state scissor; member in struct:softpipe_context
134 /** Derived from scissor and surface bounds: */
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_context.h 102 struct pipe_scissor_state scissor; member in struct:nv30_context
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_context.h 106 uint16_t scissor; member in struct:nv50_context::__anon14567
146 struct pipe_scissor_state scissor; member in struct:nv50_context
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_context.h 99 uint16_t scissor; member in struct:nvc0_context::__anon14576
150 struct pipe_scissor_state scissor; member in struct:nvc0_context

Completed in 1393 milliseconds

1 2 3