Searched refs:src_depth (Results 1 – 8 of 8) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_test_image_copy_region.c | 782 int src_width, src_height, src_depth, dst_width, dst_height, dst_depth; in si_test_blit() local 803 src_depth = (rand() % max_src_depth) + 1; in si_test_blit() 811 srcz = rand() % (util_num_layers(&tsrc, src_level) - src_depth + 1); in si_test_blit() 850 if (src_depth > dst_depth) in si_test_blit() 851 src_depth = dst_depth; in si_test_blit() 859 if (src_depth < dst_depth) in si_test_blit() 860 dst_depth = src_depth; in si_test_blit() 878 u_box_3d(srcx, srcy, srcz, src_width, src_height, src_depth, &info.src.box); in si_test_blit()
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
D | gl4cStencilTexturingTests.cpp | 1181 GLfloat src_depth = 0.0f; in verifyTexture() local 1184 memcpy(&src_depth, src_pixel_data, 4); in verifyTexture() 1186 if (de::abs(src_depth - dst_depth) > 0.0001f) in verifyTexture() 1189 << "], got: " << dst_depth << " expected: " << src_depth in verifyTexture()
|
/third_party/mesa3d/src/intel/compiler/ |
D | brw_fs_visitor.cpp | 626 fs_reg src_depth, src_stencil; in emit_single_fb_write() local 629 src_depth = frag_depth; in emit_single_fb_write() 639 src_depth = fetch_payload_reg(bld, payload.source_depth_reg); in emit_single_fb_write() 646 color0, color1, src0_alpha, src_depth, dst_depth, src_stencil, in emit_single_fb_write()
|
D | brw_lower_logical_sends.cpp | 161 const fs_reg &src_depth = inst->src[FB_WRITE_LOGICAL_SRC_SRC_DEPTH]; in lower_fb_write_logical_send() local 322 if (src_depth.file != BAD_FILE) { in lower_fb_write_logical_send() 323 sources[length] = src_depth; in lower_fb_write_logical_send()
|
/third_party/ffmpeg/libswscale/ |
D | swscale_unscaled.c | 1742 unsigned shift= src_depth-dst_depth, tmp;\ 1831 const int src_depth = desc_src->comp[plane].depth; in planarCopyWrapper() local 1842 } else if (src_depth == 8) { in planarCopyWrapper() 1861 } else if (src_depth <= dst_depth) { in planarCopyWrapper() 1867 unsigned shift = dst_depth - src_depth; in planarCopyWrapper() 1891 w(&dstPtr2[j], v<<(dst_depth-src_depth));\ in planarCopyWrapper() 1896 w(&dstPtr2[j], (v<<(dst_depth-src_depth)) | \ in planarCopyWrapper() 1897 (v>>(2*src_depth-dst_depth)));\ in planarCopyWrapper()
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
D | u_blitter.c | 1904 int src_depth = abs(srcbox->depth); in do_blits() local 1905 float src_z_step = src_depth / (float)dstbox->depth; in do_blits() 1924 depth_center_offset = 0.5 / dstbox->depth * src_depth; in do_blits() 2061 int src_depth = src->u.tex.last_layer + 1; in util_blitter_blit_generic() local 2082 box.z >= 0 && box.z < src_depth && in util_blitter_blit_generic() 2085 box.z + box.depth > 0 && box.z + box.depth <= src_depth; in util_blitter_blit_generic()
|
/third_party/mesa3d/src/amd/vulkan/ |
D | radv_meta_blit.c | 250 uint32_t src_depth = radv_minify(src_iview->image->info.depth, src_iview->vk.base_mip_level); in meta_emit_blit() local 259 src_offset_0[2] / (float)src_depth, in meta_emit_blit()
|
/third_party/mesa3d/src/microsoft/vulkan/ |
D | dzn_cmd_buffer.c | 2140 uint32_t src_depth = in dzn_cmd_buffer_blit_region() local 2148 float src_slice_step = src_is_3d ? (float)src_depth / dst_depth : 1; in dzn_cmd_buffer_blit_region()
|