| /xsrc/external/mit/glu/dist/src/libnurbs/internals/ |
| H A D | trimvertpool.h | 49 void clear( void );
|
| H A D | trimvertpool.cc | 77 * TrimVertexPool::clear 81 TrimVertexPool::clear( void ) function in class:TrimVertexPool 84 pool.clear();
|
| /xsrc/external/mit/xterm/dist/vttests/ |
| H A D | ctlpix.sh | 36 clear
|
| H A D | vt52chars.pl | 34 sub clear() { subroutine 66 &clear;
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| H A D | st_cb_clear.c | 72 memset(&st->clear, 0, sizeof(st->clear)); 74 st->clear.raster.half_pixel_center = 1; 75 st->clear.raster.bottom_edge_rule = 1; 76 st->clear.raster.depth_clip_near = 1; 77 st->clear.raster.depth_clip_far = 1; 87 if (st->clear.fs) { 88 cso_delete_fragment_shader(st->cso_context, st->clear.fs); 89 st->clear.fs = NULL; 91 if (st->clear [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/freedreno/ |
| H A D | freedreno_perfcntr.h | 46 /* Optional, most counters don't have enable/clear registers: */ 48 unsigned clear; member in struct:fd_perfcntr_counter
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| H A D | st_cb_clear.c | 72 memset(&st->clear, 0, sizeof(st->clear)); 74 st->clear.raster.half_pixel_center = 1; 75 st->clear.raster.bottom_edge_rule = 1; 76 st->clear.raster.depth_clip_near = 1; 77 st->clear.raster.depth_clip_far = 1; 87 if (st->clear.fs) { 88 st->pipe->delete_fs_state(st->pipe, st->clear.fs); 89 st->clear.fs = NULL; 91 if (st->clear [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/zink/ |
| H A D | zink_clear.h | 113 zink_fb_clear_element_needs_explicit(struct zink_framebuffer_clear_data *clear) argument 115 return clear->has_scissor || clear->conditional; 134 zink_fb_clear_util_unpack_clear_color(struct zink_framebuffer_clear_data *clear, enum pipe_format format, union pipe_color_union *color);
|
| H A D | zink_clear.c | 47 * so we can never clear them if we aren't trying to clear only layer 0 175 struct zink_framebuffer_clear_data *clear = NULL; local in function:get_clear_data 179 /* if we're completely overwriting the previous clear, merge this into the previous clear */ 181 clear = last_clear; 183 if (!clear) { 186 clear = zink_fb_clear_element(fb_clear, zink_fb_clear_count(fb_clear) - 1); 188 return clear; 222 struct zink_framebuffer_clear_data *clear local in function:zink_clear 242 struct zink_framebuffer_clear_data *clear = get_clear_data(ctx, fb_clear, needs_rp ? scis local in function:zink_clear 334 struct zink_framebuffer_clear_data *clear = zink_fb_clear_element(color_clear, j local in function:zink_clear_framebuffer 350 struct zink_framebuffer_clear_data *clear = zink_fb_clear_element(zs_clear, j); local in function:zink_clear_framebuffer 523 zink_fb_clear_util_unpack_clear_color(struct zink_framebuffer_clear_data * clear,enum pipe_format format,union pipe_color_union * color) argument 557 struct zink_framebuffer_clear_data *clear = zink_fb_clear_element(fb_clear, 0); local in function:fb_clears_apply_internal 573 struct zink_framebuffer_clear_data *clear = zink_fb_clear_element(fb_clear, 0); local in function:fb_clears_apply_internal 643 struct zink_framebuffer_clear_data *clear = zink_fb_clear_element(fb_clear, j); local in function:zink_clear_apply_conditionals 674 struct zink_framebuffer_clear_data *clear = zink_fb_clear_element(fb_clear, j); local in function:fb_clears_apply_or_discard_internal [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i915/ |
| H A D | intel_blit.c | 324 * Use blitting to clear the renderbuffers named by 'flags'. 328 * \param mask bitmask of BUFFER_BIT_* values indicating buffers to clear 341 * ignore fast color clear issues. 395 /* OK, clear this renderbuffer */ 429 uint8_t clear[4]; local in function:intelClearWithBlit 432 _mesa_unclamped_float_rgba_to_ubyte(clear, color); 437 clear_val = PACK_COLOR_8888(clear[3], clear[0], 438 clear[1], clear[ [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i915/ |
| H A D | intel_blit.c | 324 * Use blitting to clear the renderbuffers named by 'flags'. 328 * \param mask bitmask of BUFFER_BIT_* values indicating buffers to clear 341 * ignore fast color clear issues. 395 /* OK, clear this renderbuffer */ 429 uint8_t clear[4]; local in function:intelClearWithBlit 432 _mesa_unclamped_float_rgba_to_ubyte(clear, color); 437 clear_val = PACK_COLOR_8888(clear[3], clear[0], 438 clear[1], clear[ [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/v3d/ |
| H A D | v3dx_rcl.c | 173 (job->clear & pipe_bit))); 175 !(job->clear & PIPE_CLEAR_DEPTH); 177 !(job->clear & PIPE_CLEAR_STENCIL); 272 MAYBE_UNUSED bool needs_color_clear = job->clear & PIPE_CLEAR_COLOR_BUFFERS; 273 MAYBE_UNUSED bool needs_z_clear = job->clear & PIPE_CLEAR_DEPTH; 274 MAYBE_UNUSED bool needs_s_clear = job->clear & PIPE_CLEAR_STENCIL; 280 * - Z/S buffers store may not clear the TLB color buffer. 282 * And on V3D 4.1, we only have one flag for "clear the buffer being 283 * stored" in the general packet, and a separate packet to clear all 287 * packet when we don't have to emit a separate packet to clear al [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/panfrost/ |
| H A D | pan_sfbd.c | 45 if (job->clear & PIPE_CLEAR_COLOR) { 52 if (job->clear & PIPE_CLEAR_DEPTH) { 62 if (job->clear & PIPE_CLEAR_STENCIL) { 73 if (!(job->clear & ~(PIPE_CLEAR_COLOR | PIPE_CLEAR_DEPTH | PIPE_CLEAR_STENCIL))) { 74 /* On a tiler like this, it's fastest to clear all three buffers at once */ 80 if (job->clear & PIPE_CLEAR_STENCIL)
|
| /xsrc/external/mit/xf86-video-intel/dist/test/ |
| H A D | basic-tiledrect.c | 113 static void clear(struct test_target *tt) function in typeref:typename:void 129 clear(&out); 132 clear(&ref); 176 clear(&out); 177 clear(&ref); 182 clear(&out); 183 clear(&ref); 202 clear(&out); 205 clear(&ref); 240 clear( [all...] |
| H A D | basic-rectangle.c | 24 static void clear(struct test_display *dpy, struct test_target *tt) function in typeref:typename:void 40 clear(&t->out, &out); 43 clear(&t->ref, &ref); 81 clear(&t->out, &out); 84 clear(&t->ref, &ref); 123 clear(&t->out, &out); 126 clear(&t->ref, &ref); 165 clear(&t->out, &out); 168 clear(&t->ref, &ref);
|
| /xsrc/external/mit/xf86-video-intel-2014/dist/test/ |
| H A D | basic-tiledrect.c | 113 static void clear(struct test_target *tt) function in typeref:typename:void 129 clear(&out); 132 clear(&ref); 176 clear(&out); 177 clear(&ref); 182 clear(&out); 183 clear(&ref); 202 clear(&out); 205 clear(&ref); 240 clear( [all...] |
| H A D | basic-rectangle.c | 24 static void clear(struct test_display *dpy, struct test_target *tt) function in typeref:typename:void 40 clear(&t->out, &out); 43 clear(&t->ref, &ref); 81 clear(&t->out, &out); 84 clear(&t->ref, &ref); 123 clear(&t->out, &out); 126 clear(&t->ref, &ref); 165 clear(&t->out, &out); 168 clear(&t->ref, &ref);
|
| /xsrc/external/mit/MesaLib/dist/src/broadcom/vulkan/ |
| H A D | v3dvx_queue.c | 54 cl_emit(rcl, TILE_RENDERING_MODE_CFG_ZS_CLEAR_VALUES, clear) { 55 clear.z_clear_value = 1.0f; 56 clear.stencil_clear_value = 0;
|
| /xsrc/external/mit/mesa-demos/dist/src/trivial/ |
| H A D | Makefile.am | 35 clear-color \ 36 clear-fbo \ 37 clear-fbo-scissor \ 38 clear-fbo-tex \ 39 clear-random \ 40 clear-repeat \ 41 clear-scissor \ 42 clear-undefined \ 131 tri-clear \
|
| /xsrc/external/mit/MesaLib/dist/src/freedreno/perfcntrs/ |
| H A D | freedreno_perfcntr.h | 52 /* Optional, most counters don't have enable/clear registers: */ 54 unsigned clear; member in struct:fd_perfcntr_counter 109 .counter_reg_hi = REG(_hi), .enable = REG(_en), .clear = REG(_clr), \
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/vulkan/ |
| H A D | panvk_cmd_buffer.c | 333 cmdbuf->state.clear[i].depth = in[i].depthStencil.depth; 334 cmdbuf->state.clear[i].stencil = in[i].depthStencil.stencil; 336 cmdbuf->state.clear[i].depth = 0; 337 cmdbuf->state.clear[i].stencil = 0; 342 pan_pack_color(cmdbuf->state.clear[i].color, col, fmt, false); 344 memset(cmdbuf->state.clear[i].color, 0, sizeof(cmdbuf->state.clear[0].color)); 356 const struct panvk_clear_value *clears = cmdbuf->state.clear; 370 fbinfo->rts[cb].clear = subpass->color_attachments[cb].clear; [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/v3d/ |
| H A D | v3dx_rcl.c | 184 (job->clear & pipe_bit))); 186 !(job->clear & PIPE_CLEAR_DEPTH); 188 !(job->clear & PIPE_CLEAR_STENCIL); 294 UNUSED bool needs_color_clear = job->clear & PIPE_CLEAR_COLOR_BUFFERS; 295 UNUSED bool needs_z_clear = job->clear & PIPE_CLEAR_DEPTH; 296 UNUSED bool needs_s_clear = job->clear & PIPE_CLEAR_STENCIL; 302 * - Z/S buffers store may not clear the TLB color buffer. 304 * And on V3D 4.1, we only have one flag for "clear the buffer being 305 * stored" in the general packet, and a separate packet to clear all 309 * packet when we don't have to emit a separate packet to clear al [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/intel/isl/ |
| H A D | isl_emit_depth_stencil.c | 154 struct GENX(3DSTATE_CLEAR_PARAMS) clear = { 184 clear.DepthClearValueValid = true; 186 clear.DepthClearValue = info->depth_clear_value; 192 clear.DepthClearValue = fu.u; 196 clear.DepthClearValue = info->depth_clear_value * ((1u << 24) - 1); 199 clear.DepthClearValue = info->depth_clear_value * ((1u << 16) - 1); 220 GENX(3DSTATE_CLEAR_PARAMS_pack)(NULL, dw, &clear);
|
| /xsrc/external/mit/MesaLib/dist/src/intel/isl/ |
| H A D | isl_emit_depth_stencil.c | 223 struct GENX(3DSTATE_CLEAR_PARAMS) clear = { 246 * and isn't supported with HiZ write-through. It's fairly clear that 269 * pretty clear that, even if it's not currently called out in the 296 clear.DepthClearValueValid = true; 298 clear.DepthClearValue = info->depth_clear_value; 304 clear.DepthClearValue = fu.u; 308 clear.DepthClearValue = info->depth_clear_value * ((1u << 24) - 1); 311 clear.DepthClearValue = info->depth_clear_value * ((1u << 16) - 1); 332 GENX(3DSTATE_CLEAR_PARAMS_pack)(NULL, dw, &clear);
|
| /xsrc/external/mit/mesa-demos/dist/src/egl/opengles1/ |
| H A D | Makefile.am | 43 clear \
|