/third_party/mesa3d/src/gallium/drivers/zink/ |
D | zink_clear.c | 50 const struct pipe_scissor_state *scissor_state, in clear_in_rp() argument 92 if (scissor_state) { in clear_in_rp() 93 cr.rect.offset.x = scissor_state->minx; in clear_in_rp() 94 cr.rect.offset.y = scissor_state->miny; in clear_in_rp() 95 cr.rect.extent.width = MIN2(fb->width, scissor_state->maxx - scissor_state->minx); in clear_in_rp() 96 cr.rect.extent.height = MIN2(fb->height, scissor_state->maxy - scissor_state->miny); in clear_in_rp() 130 …text *ctx, struct zink_framebuffer_clear *fb_clear, const struct pipe_scissor_state *scissor_state) in get_clear_data() argument 136 …if (!scissor_state || (last_clear->has_scissor && scissor_states_equal(&last_clear->scissor, sciss… in get_clear_data() 183 const struct pipe_scissor_state *scissor_state, in zink_clear() argument 195 if (scissor_state) { in zink_clear() [all …]
|
D | zink_clear.h | 56 const struct pipe_scissor_state *scissor_state,
|
/third_party/mesa3d/src/mesa/state_tracker/ |
D | st_cb_clear.c | 506 struct pipe_scissor_state scissor_state = { in st_Clear() local 521 miny = fb->Height - scissor_state.maxy; in st_Clear() 522 maxy = fb->Height - scissor_state.miny; in st_Clear() 523 scissor_state.miny = MAX2(miny, 0); in st_Clear() 524 scissor_state.maxy = MAX2(maxy, 0); in st_Clear() 528 scissor_state.maxx = MIN2(scissor_state.maxx, fb->Width); in st_Clear() 529 scissor_state.maxy = MIN2(scissor_state.maxy, fb->Height); in st_Clear() 530 if (scissor_state.minx >= scissor_state.maxx || in st_Clear() 531 scissor_state.miny >= scissor_state.maxy) in st_Clear() 537 st->pipe->clear(st->pipe, clear_buffers, have_scissor_buffers ? &scissor_state : NULL, in st_Clear()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
D | nv30_clear.c | 53 …_clear(struct pipe_context *pipe, unsigned buffers, const struct pipe_scissor_state *scissor_state, in nv30_clear() argument 64 if (scissor_state) { in nv30_clear() 65 uint32_t minx = scissor_state->minx; in nv30_clear() 66 uint32_t maxx = MIN2(fb->width, scissor_state->maxx); in nv30_clear() 67 uint32_t miny = scissor_state->miny; in nv30_clear() 68 uint32_t maxy = MIN2(fb->height, scissor_state->maxy); in nv30_clear()
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
D | iris_clear.c | 617 const struct pipe_scissor_state *scissor_state, in iris_clear() argument 632 if (scissor_state) { in iris_clear() 633 box.x = scissor_state->minx; in iris_clear() 634 box.y = scissor_state->miny; in iris_clear() 635 box.width = MIN2(box.width, scissor_state->maxx - scissor_state->minx); in iris_clear() 636 box.height = MIN2(box.height, scissor_state->maxy - scissor_state->miny); in iris_clear()
|
/third_party/mesa3d/src/gallium/drivers/crocus/ |
D | crocus_clear.c | 641 const struct pipe_scissor_state *scissor_state, in crocus_clear() argument 657 if (scissor_state) { in crocus_clear() 658 box.x = scissor_state->minx; in crocus_clear() 659 box.y = scissor_state->miny; in crocus_clear() 660 box.width = MIN2(box.width, scissor_state->maxx - scissor_state->minx); in crocus_clear() 661 box.height = MIN2(box.height, scissor_state->maxy - scissor_state->miny); in crocus_clear()
|
/third_party/mesa3d/src/gallium/drivers/i915/ |
D | i915_context.h | 398 const struct pipe_scissor_state *scissor_state, 402 const struct pipe_scissor_state *scissor_state,
|
D | i915_clear.c | 221 const struct pipe_scissor_state *scissor_state, in i915_clear_blitter() argument 250 const struct pipe_scissor_state *scissor_state, in i915_clear_render() argument
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_clear.h | 40 const struct pipe_scissor_state *scissor_state,
|
D | lp_clear.c | 51 const struct pipe_scissor_state *scissor_state, in llvmpipe_clear() argument
|
/third_party/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_clear.h | 39 const struct pipe_scissor_state *scissor_state,
|
D | sp_clear.c | 51 const struct pipe_scissor_state *scissor_state, in softpipe_clear() argument
|
/third_party/mesa3d/src/gallium/auxiliary/driver_ddebug/ |
D | dd_draw.c | 296 DUMP_I(scissor_state, &dstate->scissors[i], i); in dd_dump_shader() 484 DUMP_M_ADDR(scissor_state, info, scissor); in dd_dump_blit() 524 info->scissor_state.minx, info->scissor_state.miny, in dd_dump_clear() 525 info->scissor_state.maxx, info->scissor_state.maxy); in dd_dump_clear() 1527 …clear(struct pipe_context *_pipe, unsigned buffers, const struct pipe_scissor_state *scissor_state, in dd_context_clear() argument 1537 if (scissor_state) in dd_context_clear() 1538 record->call.info.clear.scissor_state = *scissor_state; in dd_context_clear() 1544 pipe->clear(pipe, buffers, scissor_state, color, depth, stencil); in dd_context_clear()
|
D | dd_pipe.h | 96 struct pipe_scissor_state scissor_state; member
|
/third_party/mesa3d/src/gallium/drivers/r300/ |
D | r300_context.c | 116 FREE(r300->scissor_state.state); in r300_destroy_context() 187 R300_INIT_ATOM(scissor_state, 3); in r300_setup_atoms() 237 R300_ALLOC_ATOM(scissor_state, pipe_scissor_state); in r300_setup_atoms()
|
D | r300_blit.c | 70 util_blitter_save_scissor(r300->blitter, r300->scissor_state.state); in r300_blitter_begin() 214 const struct pipe_scissor_state *scissor_state, in r300_clear() argument
|
D | r300_context.h | 512 struct r300_atom scissor_state; member
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/ |
D | nv50_surface.c | 527 …_clear(struct pipe_context *pipe, unsigned buffers, const struct pipe_scissor_state *scissor_state, in nv50_clear() argument 541 if (scissor_state) { in nv50_clear() 542 uint32_t minx = scissor_state->minx; in nv50_clear() 543 uint32_t maxx = MIN2(fb->width, scissor_state->maxx); in nv50_clear() 544 uint32_t miny = scissor_state->miny; in nv50_clear() 545 uint32_t maxy = MIN2(fb->height, scissor_state->maxy); in nv50_clear() 620 if (scissor_state) { in nv50_clear()
|
D | nv50_context.h | 294 const struct pipe_scissor_state *scissor_state,
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
D | nvc0_surface.c | 693 const struct pipe_scissor_state *scissor_state, in nvc0_clear() argument 707 if (scissor_state) { in nvc0_clear() 708 uint32_t minx = scissor_state->minx; in nvc0_clear() 709 uint32_t maxx = MIN2(fb->width, scissor_state->maxx); in nvc0_clear() 710 uint32_t miny = scissor_state->miny; in nvc0_clear() 711 uint32_t maxy = MIN2(fb->height, scissor_state->maxy); in nvc0_clear() 779 if (scissor_state) { in nvc0_clear()
|
D | nvc0_context.h | 360 const struct pipe_scissor_state *scissor_state,
|
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/ |
D | tr_context.c | 1040 trace_dump_arg(scissor_state, states); in trace_context_set_scissor_states() 1411 const struct pipe_scissor_state *scissor_state, in trace_context_clear() argument 1424 trace_dump_scissor_state(scissor_state); in trace_context_clear() 1433 pipe->clear(pipe, buffers, scissor_state, color, depth, stencil); in trace_context_clear()
|
/third_party/mesa3d/src/gallium/include/pipe/ |
D | p_context.h | 679 const struct pipe_scissor_state *scissor_state,
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
D | svga_pipe_clear.c | 251 …_clear(struct pipe_context *pipe, unsigned buffers, const struct pipe_scissor_state *scissor_state, in svga_clear() argument
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
D | u_threaded_context.c | 3927 struct pipe_scissor_state scissor_state; member 3936 …pipe->clear(pipe, p->buffers, p->scissor_state_set ? &p->scissor_state : NULL, &p->color, p->depth… in tc_call_clear() 3941 …clear(struct pipe_context *_pipe, unsigned buffers, const struct pipe_scissor_state *scissor_state, in tc_clear() argument 3949 if (scissor_state) in tc_clear() 3950 p->scissor_state = *scissor_state; in tc_clear() 3951 p->scissor_state_set = !!scissor_state; in tc_clear()
|