Searched refs:dst_depth (Results 1 – 5 of 5) sorted by relevance
/third_party/ffmpeg/libswscale/ |
D | swscale_unscaled.c | 1743 unsigned shift= src_depth-dst_depth, tmp;\ 1766 … tmp = (bswap(src[j+0]) + dither[0])>>shift; dst[j+0] = dbswap(tmp - (tmp>>dst_depth));\ 1767 … tmp = (bswap(src[j+1]) + dither[1])>>shift; dst[j+1] = dbswap(tmp - (tmp>>dst_depth));\ 1768 … tmp = (bswap(src[j+2]) + dither[2])>>shift; dst[j+2] = dbswap(tmp - (tmp>>dst_depth));\ 1769 … tmp = (bswap(src[j+3]) + dither[3])>>shift; dst[j+3] = dbswap(tmp - (tmp>>dst_depth));\ 1770 … tmp = (bswap(src[j+4]) + dither[4])>>shift; dst[j+4] = dbswap(tmp - (tmp>>dst_depth));\ 1771 … tmp = (bswap(src[j+5]) + dither[5])>>shift; dst[j+5] = dbswap(tmp - (tmp>>dst_depth));\ 1772 … tmp = (bswap(src[j+6]) + dither[6])>>shift; dst[j+6] = dbswap(tmp - (tmp>>dst_depth));\ 1773 … tmp = (bswap(src[j+7]) + dither[7])>>shift; dst[j+7] = dbswap(tmp - (tmp>>dst_depth));\ 1776 … tmp = (bswap(src[j]) + dither[j&7])>>shift; dst[j] = dbswap(tmp - (tmp>>dst_depth));\ [all …]
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
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/intel/compiler/ |
D | brw_fs_visitor.cpp | 620 const fs_reg dst_depth = fetch_payload_reg(bld, payload.dest_depth_reg); in emit_single_fb_write() local 641 color0, color1, src0_alpha, src_depth, dst_depth, src_stencil, in emit_single_fb_write()
|
D | brw_fs.cpp | 4592 const fs_reg &dst_depth = inst->src[FB_WRITE_LOGICAL_SRC_DST_DEPTH]; in lower_fb_write_logical_send() local 4757 if (dst_depth.file != BAD_FILE) { in lower_fb_write_logical_send() 4758 sources[length] = dst_depth; in lower_fb_write_logical_send()
|
/third_party/mesa3d/src/mesa/state_tracker/ |
D | st_cb_texture.c | 2646 unsigned dst_depth = 1; in fallback_copy_texsubimage() local 2677 dst_width, dst_height, dst_depth, in fallback_copy_texsubimage()
|