Searched refs:dst_depth (Results 1 - 8 of 8) sorted by relevance
/third_party/ffmpeg/libswscale/ |
H A D | swscale_unscaled.c | 1742 unsigned shift= src_depth-dst_depth, tmp;\ 1765 tmp = (bswap(src[j+0]) + dither[0])>>shift; dst[j+0] = dbswap(tmp - (tmp>>dst_depth));\ 1766 tmp = (bswap(src[j+1]) + dither[1])>>shift; dst[j+1] = dbswap(tmp - (tmp>>dst_depth));\ 1767 tmp = (bswap(src[j+2]) + dither[2])>>shift; dst[j+2] = dbswap(tmp - (tmp>>dst_depth));\ 1768 tmp = (bswap(src[j+3]) + dither[3])>>shift; dst[j+3] = dbswap(tmp - (tmp>>dst_depth));\ 1769 tmp = (bswap(src[j+4]) + dither[4])>>shift; dst[j+4] = dbswap(tmp - (tmp>>dst_depth));\ 1770 tmp = (bswap(src[j+5]) + dither[5])>>shift; dst[j+5] = dbswap(tmp - (tmp>>dst_depth));\ 1771 tmp = (bswap(src[j+6]) + dither[6])>>shift; dst[j+6] = dbswap(tmp - (tmp>>dst_depth));\ 1772 tmp = (bswap(src[j+7]) + dither[7])>>shift; dst[j+7] = dbswap(tmp - (tmp>>dst_depth));\ 1775 tmp = (bswap(src[j]) + dither[j&7])>>shift; dst[j] = dbswap(tmp - (tmp>>dst_depth));\ 1832 const int dst_depth = desc_dst->comp[plane].depth; planarCopyWrapper() local [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cStencilTexturingTests.cpp | 1160 GLfloat dst_depth = 0.0f; in verifyTexture() local 1164 memcpy(&dst_depth, dst_pixel_data, 4); in verifyTexture() 1169 if (de::abs(src_depth_f - dst_depth) > 0.0001f) in verifyTexture() 1172 << "], got: " << dst_depth << " expected: " << src_depth_f in verifyTexture() 1180 GLfloat dst_depth = 0.0f; in verifyTexture() local 1183 memcpy(&dst_depth, dst_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/gallium/drivers/radeonsi/ |
H A 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 807 dst_depth = (rand() % max_dst_depth) + 1; in si_test_blit() 815 dstz = rand() % (util_num_layers(&tdst, dst_level) - dst_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() 879 u_box_3d(dstx, dsty, dstz, dst_width, dst_height, dst_depth, &info.dst.box); in si_test_blit()
|
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_fs_visitor.cpp | 625 const fs_reg dst_depth = fetch_payload_reg(bld, payload.dest_depth_reg); in emit_single_fb_write() local 646 color0, color1, src0_alpha, src_depth, dst_depth, src_stencil, in emit_single_fb_write()
|
H A D | brw_lower_logical_sends.cpp | 162 const fs_reg &dst_depth = inst->src[FB_WRITE_LOGICAL_SRC_DST_DEPTH]; in lower_fb_write_logical_send() local 327 if (dst_depth.file != BAD_FILE) { in lower_fb_write_logical_send() 328 sources[length] = dst_depth; in lower_fb_write_logical_send() 336 /* XXX: src_stencil is only available on gfx9+. dst_depth is never in lower_fb_write_logical_send()
|
/third_party/mesa3d/src/freedreno/vulkan/ |
H A D | tu_clear_blit.c | 1284 void (*dst_depth)(struct tu_cs *cs, const struct tu_image_view *iview, uint32_t layer); member 1308 .dst_depth = r2d_dst_depth, 1322 .dst_depth = r3d_dst_depth, 2285 ops->dst_depth(cs, dst, i); in resolve_sysmem() 2867 ops->dst_depth(cs, iview, i); in clear_sysmem_attachment()
|
/third_party/mesa3d/src/microsoft/vulkan/ |
H A D | dzn_cmd_buffer.c | 2136 uint32_t dst_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() 2153 uint32_t slice_count = dst_is_3d ? dst_depth : layer_count; in dzn_cmd_buffer_blit_region()
|
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_cb_texture.c | 2570 unsigned dst_depth = 1; in fallback_copy_texsubimage() local 2601 dst_width, dst_height, dst_depth, in fallback_copy_texsubimage()
|
Completed in 28 milliseconds