Home
last modified time | relevance | path

Searched refs:render_condition_enabled (Results 1 - 25 of 30) sorted by relevance

12

/third_party/mesa3d/src/gallium/drivers/iris/
H A Diris_clear.c71 bool render_condition_enabled, in can_fast_clear_color()
95 if (render_condition_enabled && in can_fast_clear_color()
310 bool render_condition_enabled, in clear_color()
321 if (render_condition_enabled) { in clear_color()
335 render_condition_enabled, in clear_color()
381 bool render_condition_enabled, in can_fast_clear_depth()
403 if (render_condition_enabled && in can_fast_clear_depth()
515 bool render_condition_enabled, in clear_depth_stencil()
526 if (render_condition_enabled) { in clear_depth_stencil()
543 can_fast_clear_depth(ice, z_res, level, box, render_condition_enabled, in clear_depth_stencil()
67 can_fast_clear_color(struct iris_context *ice, struct pipe_resource *p_res, unsigned level, const struct pipe_box *box, bool render_condition_enabled, enum isl_format render_format, union isl_color_value color) can_fast_clear_color() argument
306 clear_color(struct iris_context *ice, struct pipe_resource *p_res, unsigned level, const struct pipe_box *box, bool render_condition_enabled, enum isl_format format, struct isl_swizzle swizzle, union isl_color_value color) clear_color() argument
377 can_fast_clear_depth(struct iris_context *ice, struct iris_resource *res, unsigned level, const struct pipe_box *box, bool render_condition_enabled, float depth) can_fast_clear_depth() argument
511 clear_depth_stencil(struct iris_context *ice, struct pipe_resource *p_res, unsigned level, const struct pipe_box *box, bool render_condition_enabled, bool clear_depth, bool clear_stencil, float depth, uint8_t stencil) clear_depth_stencil() argument
736 iris_clear_render_target(struct pipe_context *ctx, struct pipe_surface *psurf, const union pipe_color_union *p_color, unsigned dst_x, unsigned dst_y, unsigned width, unsigned height, bool render_condition_enabled) iris_clear_render_target() argument
766 iris_clear_depth_stencil(struct pipe_context *ctx, struct pipe_surface *psurf, unsigned flags, double depth, unsigned stencil, unsigned dst_x, unsigned dst_y, unsigned width, unsigned height, bool render_condition_enabled) iris_clear_depth_stencil() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/crocus/
H A Dcrocus_clear.c69 bool render_condition_enabled, in can_fast_clear_color()
94 if (render_condition_enabled && in can_fast_clear_color()
330 bool render_condition_enabled, in clear_color()
341 if (render_condition_enabled) { in clear_color()
355 render_condition_enabled, in clear_color()
399 bool render_condition_enabled, in can_fast_clear_depth()
424 if (render_condition_enabled && in can_fast_clear_depth()
543 bool render_condition_enabled, in clear_depth_stencil()
554 if (render_condition_enabled) { in clear_depth_stencil()
571 can_fast_clear_depth(ice, z_res, level, box, render_condition_enabled, in clear_depth_stencil()
65 can_fast_clear_color(struct crocus_context *ice, struct pipe_resource *p_res, unsigned level, const struct pipe_box *box, bool render_condition_enabled, enum isl_format format, enum isl_format render_format, union isl_color_value color) can_fast_clear_color() argument
326 clear_color(struct crocus_context *ice, struct pipe_resource *p_res, unsigned level, const struct pipe_box *box, bool render_condition_enabled, enum isl_format format, struct isl_swizzle swizzle, union isl_color_value color) clear_color() argument
395 can_fast_clear_depth(struct crocus_context *ice, struct crocus_resource *res, unsigned level, const struct pipe_box *box, bool render_condition_enabled, float depth) can_fast_clear_depth() argument
539 clear_depth_stencil(struct crocus_context *ice, struct pipe_resource *p_res, unsigned level, const struct pipe_box *box, bool render_condition_enabled, bool clear_depth, bool clear_stencil, float depth, uint8_t stencil) clear_depth_stencil() argument
782 crocus_clear_render_target(struct pipe_context *ctx, struct pipe_surface *psurf, const union pipe_color_union *p_color, unsigned dst_x, unsigned dst_y, unsigned width, unsigned height, bool render_condition_enabled) crocus_clear_render_target() argument
814 crocus_clear_depth_stencil(struct pipe_context *ctx, struct pipe_surface *psurf, unsigned flags, double depth, unsigned stencil, unsigned dst_x, unsigned dst_y, unsigned width, unsigned height, bool render_condition_enabled) crocus_clear_depth_stencil() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_surface.c101 bool render_condition_enabled) in softpipe_clear_render_target()
105 if (render_condition_enabled && !softpipe_check_render_cond(softpipe)) in softpipe_clear_render_target()
121 bool render_condition_enabled) in softpipe_clear_depth_stencil()
125 if (render_condition_enabled && !softpipe_check_render_cond(softpipe)) in softpipe_clear_depth_stencil()
96 softpipe_clear_render_target(struct pipe_context *pipe, struct pipe_surface *dst, const union pipe_color_union *color, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) softpipe_clear_render_target() argument
114 softpipe_clear_depth_stencil(struct pipe_context *pipe, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) softpipe_clear_depth_stencil() argument
/third_party/mesa3d/src/gallium/drivers/zink/
H A Dzink_clear.h77 bool render_condition_enabled);
83 bool render_condition_enabled);
H A Dzink_clear.c550 bool render_condition_enabled) in zink_clear_render_target()
554 if (!render_condition_enabled && render_condition_active) { in zink_clear_render_target()
563 if (!render_condition_enabled && render_condition_active) in zink_clear_render_target()
572 bool render_condition_enabled) in zink_clear_depth_stencil()
576 if (!render_condition_enabled && render_condition_active) { in zink_clear_depth_stencil()
593 if (!render_condition_enabled && render_condition_active) in zink_clear_depth_stencil()
547 zink_clear_render_target(struct pipe_context *pctx, struct pipe_surface *dst, const union pipe_color_union *color, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) zink_clear_render_target() argument
569 zink_clear_depth_stencil(struct pipe_context *pctx, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) zink_clear_depth_stencil() argument
/third_party/mesa3d/src/gallium/drivers/i915/
H A Di915_surface.c134 unsigned height, bool render_condition_enabled) in i915_clear_render_target_render()
164 bool render_condition_enabled) in i915_clear_depth_stencil_render()
289 unsigned height, bool render_condition_enabled) in i915_clear_render_target_blitter()
312 bool render_condition_enabled) in i915_clear_depth_stencil_blitter()
130 i915_clear_render_target_render(struct pipe_context *pipe, struct pipe_surface *dst, const union pipe_color_union *color, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) i915_clear_render_target_render() argument
160 i915_clear_depth_stencil_render(struct pipe_context *pipe, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) i915_clear_depth_stencil_render() argument
285 i915_clear_render_target_blitter(struct pipe_context *pipe, struct pipe_surface *dst, const union pipe_color_union *color, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) i915_clear_render_target_blitter() argument
308 i915_clear_depth_stencil_blitter(struct pipe_context *pipe, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) i915_clear_depth_stencil_blitter() argument
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_surface.c318 bool render_condition_enabled) in llvmpipe_clear_render_target()
322 if (render_condition_enabled && !llvmpipe_check_render_cond(llvmpipe)) in llvmpipe_clear_render_target()
389 bool render_condition_enabled) in llvmpipe_clear_depth_stencil()
393 if (render_condition_enabled && !llvmpipe_check_render_cond(llvmpipe)) in llvmpipe_clear_depth_stencil()
313 llvmpipe_clear_render_target(struct pipe_context *pipe, struct pipe_surface *dst, const union pipe_color_union *color, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) llvmpipe_clear_render_target() argument
382 llvmpipe_clear_depth_stencil(struct pipe_context *pipe, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) llvmpipe_clear_depth_stencil() argument
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_pipe_clear.c521 * \param render_condition_enabled[in] Whether to use conditional rendering
530 bool render_condition_enabled) in svga_clear_render_target()
534 svga_toggle_render_condition(svga, render_condition_enabled, FALSE); in svga_clear_render_target()
546 svga_toggle_render_condition(svga, render_condition_enabled, TRUE); in svga_clear_render_target()
525 svga_clear_render_target(struct pipe_context *pipe, struct pipe_surface *dst, const union pipe_color_union *color, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) svga_clear_render_target() argument
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/
H A Dnv30_clear.c125 bool render_condition_enabled) in nv30_clear_render_target()
186 bool render_condition_enabled) in nv30_clear_depth_stencil()
122 nv30_clear_render_target(struct pipe_context *pipe, struct pipe_surface *ps, const union pipe_color_union *color, unsigned x, unsigned y, unsigned w, unsigned h, bool render_condition_enabled) nv30_clear_render_target() argument
183 nv30_clear_depth_stencil(struct pipe_context *pipe, struct pipe_surface *ps, unsigned buffers, double depth, unsigned stencil, unsigned x, unsigned y, unsigned w, unsigned h, bool render_condition_enabled) nv30_clear_depth_stencil() argument
/third_party/mesa3d/src/gallium/drivers/etnaviv/
H A Detnaviv_clear_blit.c126 bool render_condition_enabled) in etna_clear_render_target()
140 unsigned height, bool render_condition_enabled) in etna_clear_depth_stencil()
123 etna_clear_render_target(struct pipe_context *pctx, struct pipe_surface *dst, const union pipe_color_union *color, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) etna_clear_render_target() argument
137 etna_clear_depth_stencil(struct pipe_context *pctx, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) etna_clear_depth_stencil() argument
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_clear.c1218 bool render_condition_enabled, unsigned buffers, in si_try_normal_clear()
1229 (!sctx->render_cond || render_condition_enabled) && in si_try_normal_clear()
1261 bool render_condition_enabled) in si_clear_render_target()
1267 if (si_try_normal_clear(sctx, dst, dstx, dsty, width, height, render_condition_enabled, in si_clear_render_target()
1274 render_condition_enabled); in si_clear_render_target()
1279 SI_CLEAR_SURFACE | (render_condition_enabled ? 0 : SI_DISABLE_RENDER_COND)); in si_clear_render_target()
1287 bool render_condition_enabled) in si_clear_depth_stencil()
1293 if (si_try_normal_clear(sctx, dst, dstx, dsty, width, height, render_condition_enabled, in si_clear_depth_stencil()
1298 SI_CLEAR_SURFACE | (render_condition_enabled ? 0 : SI_DISABLE_RENDER_COND)); in si_clear_depth_stencil()
1216 si_try_normal_clear(struct si_context *sctx, struct pipe_surface *dst, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled, unsigned buffers, const union pipe_color_union *color, float depth, unsigned stencil) si_try_normal_clear() argument
1258 si_clear_render_target(struct pipe_context *ctx, struct pipe_surface *dst, const union pipe_color_union *color, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) si_clear_render_target() argument
1284 si_clear_depth_stencil(struct pipe_context *ctx, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) si_clear_depth_stencil() argument
/third_party/mesa3d/src/gallium/drivers/r300/
H A Dr300_blit.c445 bool render_condition_enabled) in r300_clear_render_target()
450 (render_condition_enabled ? 0 : R300_IGNORE_RENDER_COND)); in r300_clear_render_target()
464 bool render_condition_enabled) in r300_clear_depth_stencil()
478 (render_condition_enabled ? 0 : R300_IGNORE_RENDER_COND)); in r300_clear_depth_stencil()
440 r300_clear_render_target(struct pipe_context *pipe, struct pipe_surface *dst, const union pipe_color_union *color, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) r300_clear_render_target() argument
457 r300_clear_depth_stencil(struct pipe_context *pipe, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) r300_clear_depth_stencil() argument
/third_party/mesa3d/src/gallium/include/pipe/
H A Dp_context.h693 bool render_condition_enabled);
708 bool render_condition_enabled);
/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_draw.c647 bool render_condition_enabled) in vc4_clear_render_target()
656 bool render_condition_enabled) in vc4_clear_depth_stencil()
644 vc4_clear_render_target(struct pipe_context *pctx, struct pipe_surface *ps, const union pipe_color_union *color, unsigned x, unsigned y, unsigned w, unsigned h, bool render_condition_enabled) vc4_clear_render_target() argument
653 vc4_clear_depth_stencil(struct pipe_context *pctx, struct pipe_surface *ps, unsigned buffers, double depth, unsigned stencil, unsigned x, unsigned y, unsigned w, unsigned h, bool render_condition_enabled) vc4_clear_depth_stencil() argument
/third_party/mesa3d/src/gallium/drivers/r600/
H A Dr600_blit.c544 bool render_condition_enabled) in r600_clear_render_target()
549 (render_condition_enabled ? 0 : R600_DISABLE_RENDER_COND)); in r600_clear_render_target()
562 bool render_condition_enabled) in r600_clear_depth_stencil()
567 (render_condition_enabled ? 0 : R600_DISABLE_RENDER_COND)); in r600_clear_depth_stencil()
539 r600_clear_render_target(struct pipe_context *ctx, struct pipe_surface *dst, const union pipe_color_union *color, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) r600_clear_render_target() argument
555 r600_clear_depth_stencil(struct pipe_context *ctx, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) r600_clear_depth_stencil() argument
/third_party/mesa3d/src/gallium/auxiliary/driver_trace/
H A Dtr_context.c1445 bool render_condition_enabled) in trace_context_clear_render_target()
1461 trace_dump_arg(bool, render_condition_enabled); in trace_context_clear_render_target()
1464 render_condition_enabled); in trace_context_clear_render_target()
1477 bool render_condition_enabled) in trace_context_clear_depth_stencil()
1495 trace_dump_arg(bool, render_condition_enabled); in trace_context_clear_depth_stencil()
1499 render_condition_enabled); in trace_context_clear_depth_stencil()
1440 trace_context_clear_render_target(struct pipe_context *_pipe, struct pipe_surface *dst, const union pipe_color_union *color, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) trace_context_clear_render_target() argument
1470 trace_context_clear_depth_stencil(struct pipe_context *_pipe, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) trace_context_clear_depth_stencil() argument
/third_party/mesa3d/src/gallium/drivers/freedreno/
H A Dfreedreno_draw.c504 bool render_condition_enabled) in fd_clear_render_target()
513 bool render_condition_enabled) in fd_clear_depth_stencil()
501 fd_clear_render_target(struct pipe_context *pctx, struct pipe_surface *ps, const union pipe_color_union *color, unsigned x, unsigned y, unsigned w, unsigned h, bool render_condition_enabled) fd_clear_render_target() argument
510 fd_clear_depth_stencil(struct pipe_context *pctx, struct pipe_surface *ps, unsigned buffers, double depth, unsigned stencil, unsigned x, unsigned y, unsigned w, unsigned h, bool render_condition_enabled) fd_clear_depth_stencil() argument
/third_party/mesa3d/src/gallium/auxiliary/driver_noop/
H A Dnoop_pipe.c290 bool render_condition_enabled) in noop_clear_render_target()
301 bool render_condition_enabled) in noop_clear_depth_stencil()
285 noop_clear_render_target(struct pipe_context *ctx, struct pipe_surface *dst, const union pipe_color_union *color, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) noop_clear_render_target() argument
294 noop_clear_depth_stencil(struct pipe_context *ctx, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) noop_clear_depth_stencil() argument
/third_party/mesa3d/src/gallium/drivers/nouveau/nv50/
H A Dnv50_surface.c281 bool render_condition_enabled) in nv50_clear_render_target()
345 if (!render_condition_enabled) { in nv50_clear_render_target()
356 if (!render_condition_enabled) { in nv50_clear_render_target()
372 bool render_condition_enabled) in nv50_clear_depth_stencil()
433 if (!render_condition_enabled) { in nv50_clear_depth_stencil()
444 if (!render_condition_enabled) { in nv50_clear_depth_stencil()
276 nv50_clear_render_target(struct pipe_context *pipe, struct pipe_surface *dst, const union pipe_color_union *color, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) nv50_clear_render_target() argument
365 nv50_clear_depth_stencil(struct pipe_context *pipe, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) nv50_clear_depth_stencil() argument
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/
H A Dnvc0_surface.c291 bool render_condition_enabled) in nvc0_clear_render_target()
354 if (!render_condition_enabled) in nvc0_clear_render_target()
363 if (!render_condition_enabled) in nvc0_clear_render_target()
627 bool render_condition_enabled) in nvc0_clear_depth_stencil()
676 if (!render_condition_enabled) in nvc0_clear_depth_stencil()
685 if (!render_condition_enabled) in nvc0_clear_depth_stencil()
286 nvc0_clear_render_target(struct pipe_context *pipe, struct pipe_surface *dst, const union pipe_color_union *color, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) nvc0_clear_render_target() argument
620 nvc0_clear_depth_stencil(struct pipe_context *pipe, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) nvc0_clear_depth_stencil() argument
/third_party/mesa3d/src/gallium/tools/trace/
H A Ddump_state.py723 def clear_render_target(self, dst, rgba, dstx, dsty, width, height, render_condition_enabled):
726 def clear_depth_stencil(self, dst, clear_flags, depth, stencil, dstx, dsty, width, height, render_condition_enabled):
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_threaded_context.c3959 bool render_condition_enabled; member
3974 p->render_condition_enabled); in tc_call_clear_render_target()
3985 bool render_condition_enabled) in tc_clear_render_target()
3996 p->render_condition_enabled = render_condition_enabled; in tc_clear_render_target()
4002 bool render_condition_enabled; member
4021 p->render_condition_enabled); in tc_call_clear_depth_stencil()
4031 bool render_condition_enabled) in tc_clear_depth_stencil()
4044 p->render_condition_enabled = render_condition_enabled; in tc_clear_depth_stencil()
3980 tc_clear_render_target(struct pipe_context *_pipe, struct pipe_surface *dst, const union pipe_color_union *color, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) tc_clear_render_target() argument
4027 tc_clear_depth_stencil(struct pipe_context *_pipe, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) tc_clear_depth_stencil() argument
[all...]
/third_party/mesa3d/src/gallium/auxiliary/driver_rbug/
H A Drbug_context.c956 bool render_condition_enabled) in rbug_clear_render_target()
971 render_condition_enabled); in rbug_clear_render_target()
983 bool render_condition_enabled) in rbug_clear_depth_stencil()
1000 render_condition_enabled); in rbug_clear_depth_stencil()
951 rbug_clear_render_target(struct pipe_context *_pipe, struct pipe_surface *_dst, const union pipe_color_union *color, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) rbug_clear_render_target() argument
976 rbug_clear_depth_stencil(struct pipe_context *_pipe, struct pipe_surface *_dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) rbug_clear_depth_stencil() argument
/third_party/mesa3d/src/gallium/drivers/d3d12/
H A Dd3d12_context.cpp1973 bool render_condition_enabled)
1978 if (!render_condition_enabled && ctx->current_predication)
2013 if (!render_condition_enabled && ctx->current_predication) {
2026 bool render_condition_enabled)
2031 if (!render_condition_enabled && ctx->current_predication)
2054 if (!render_condition_enabled && ctx->current_predication) {
/third_party/mesa3d/src/gallium/auxiliary/driver_ddebug/
H A Ddd_draw.c1554 bool render_condition_enabled) in dd_context_clear_render_target()
1564 render_condition_enabled); in dd_context_clear_render_target()
1573 bool render_condition_enabled) in dd_context_clear_depth_stencil()
1584 render_condition_enabled); in dd_context_clear_depth_stencil()
1549 dd_context_clear_render_target(struct pipe_context *_pipe, struct pipe_surface *dst, const union pipe_color_union *color, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) dd_context_clear_render_target() argument
1569 dd_context_clear_depth_stencil(struct pipe_context *_pipe, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) dd_context_clear_depth_stencil() argument

Completed in 45 milliseconds

12