/third_party/mesa3d/src/mesa/main/ |
D | texstore.c | 103 GLint dstRowStride, in _mesa_memcpy_texture() argument 119 if (dstRowStride == srcRowStride && in _mesa_memcpy_texture() 120 dstRowStride == bytesPerRow) { in _mesa_memcpy_texture() 137 dstRow += dstRowStride; in _mesa_memcpy_texture() 175 dstRow += dstRowStride; in _mesa_texstore_z32() 205 dstRow += dstRowStride; in _mesa_texstore_x8_z24() 239 dstRow += dstRowStride; in _mesa_texstore_z24_x8() 270 dstRow += dstRowStride; in _mesa_texstore_z16() 298 dstRowStride, dstSlices, in _mesa_texstore_ycbcr() 313 dstRow += dstRowStride; in _mesa_texstore_ycbcr() [all …]
|
D | texcompress_rgtc.c | 109 dstRowDiff = dstRowStride >= (srcWidth * 2) ? dstRowStride - (((srcWidth + 3) & ~3) * 2) : 0; in _mesa_texstore_red_rgtc1() 162 dstRowDiff = dstRowStride >= (srcWidth * 2) ? dstRowStride - (((srcWidth + 3) & ~3) * 2) : 0; in _mesa_texstore_signed_red_rgtc1() 221 dstRowDiff = dstRowStride >= (srcWidth * 4) ? dstRowStride - (((srcWidth + 3) & ~3) * 4) : 0; in _mesa_texstore_rg_rgtc2() 286 dstRowDiff = dstRowStride >= (srcWidth * 4) ? dstRowStride - (((srcWidth + 3) & ~3) * 4) : 0; in _mesa_texstore_signed_rg_rgtc2()
|
D | texcompress_bptc.c | 166 dstSlices[0], dstRowStride); in _mesa_texstore_bptc_rgba_unorm() 211 dstSlices[0], dstRowStride, in texstore_bptc_rgb_float() 225 dstFormat, dstRowStride, dstSlices, in _mesa_texstore_bptc_rgb_signed_float() 238 dstFormat, dstRowStride, dstSlices, in _mesa_texstore_bptc_rgb_unsigned_float()
|
D | texcompress_s3tc_tmp.h | 911 const GLubyte *srcPixData, GLubyte *dest, int dstRowStride, in tx_compress_dxt1() argument 922 int dstRowDiff = dstRowStride >= (width * 2) ? in tx_compress_dxt1() 923 dstRowStride - (((width + 3) & ~3) * 2) : 0; in tx_compress_dxt1() 944 const GLubyte *srcPixData, GLubyte *dest, int dstRowStride) in tx_compress_dxt3() argument 952 int dstRowDiff = dstRowStride >= (width * 4) ? in tx_compress_dxt3() 953 dstRowStride - (((width + 3) & ~3) * 4) : 0; in tx_compress_dxt3() 982 const GLubyte *srcPixData, GLubyte *dest, int dstRowStride) in tx_compress_dxt5() argument 990 int dstRowDiff = dstRowStride >= (width * 4) ? in tx_compress_dxt5() 991 dstRowStride - (((width + 3) & ~3) * 4) : 0; in tx_compress_dxt5() 1014 GLubyte *dest, GLint dstRowStride) in tx_compress_dxtn() argument [all …]
|
D | texstore.h | 65 GLint dstRowStride, \ 80 UNUSED GLint dstRowStride, \ 99 GLint dstRowStride,
|
D | texcompress_fxt1.c | 90 …util_format_fxt1_rgb_pack_rgba_8unorm(dst, dstRowStride, pixels, srcRowStride, srcWidth, srcHeight… in _mesa_texstore_fxt1() 92 …util_format_fxt1_rgba_pack_rgba_8unorm(dst, dstRowStride, pixels, srcRowStride, srcWidth, srcHeigh… in _mesa_texstore_fxt1()
|
D | texcompress_s3tc.c | 91 dst, dstRowStride, 3); in _mesa_texstore_rgb_dxt1() 146 tx_compress_dxt1(4, srcWidth, srcHeight, pixels, dst, dstRowStride, 4); in _mesa_texstore_rgba_dxt1() 200 tx_compress_dxt3(4, srcWidth, srcHeight, pixels, dst, dstRowStride); in _mesa_texstore_rgba_dxt3() 254 tx_compress_dxt5(4, srcWidth, srcHeight, pixels, dst, dstRowStride); in _mesa_texstore_rgba_dxt5()
|
D | mipmap.c | 1476 GLubyte *dstPtr, GLint dstRowStride) in make_2d_mipmap() argument 1506 dst += dstRowStride; in make_2d_mipmap() 1568 GLubyte **dstPtr, GLint dstRowStride) in make_3d_mipmap() argument 1583 bytesPerDstImage = dstRowStride * dstHeight * bpt; in make_3d_mipmap() 1614 + dstRowStride * border + bpt * border; in make_3d_mipmap() 1634 dstImgRow += dstRowStride; in make_3d_mipmap() 1644 dstWidth, dstHeight, dstPtr[0], dstRowStride); in make_3d_mipmap() 1648 dstWidth, dstHeight, dstPtr[dstDepth - 1], dstRowStride); in make_3d_mipmap() 1664 dst = dstPtr[img] + (dstHeight - 1) * dstRowStride; in make_3d_mipmap() 1696 dst = dstPtr[img] + (dstHeight - 1) * dstRowStride; in make_3d_mipmap() [all …]
|
D | texgetimage.c | 655 const GLint dstRowStride = in get_tex_memcpy() local 666 if (bytesPerRow == dstRowStride && bytesPerRow == srcRowStride) { in get_tex_memcpy() 673 dst += dstRowStride; in get_tex_memcpy()
|
/third_party/mesa3d/src/mesa/state_tracker/ |
D | st_cb_texture.c | 2656 GLint dstRowStride; in fallback_copy_texsubimage() local 2665 dstRowStride = transfer->layer_stride; in fallback_copy_texsubimage() 2668 dstRowStride = transfer->stride; in fallback_copy_texsubimage() 2688 dstRowStride, in fallback_copy_texsubimage()
|