Lines Matching refs:dstFormat

100                      mesa_format dstFormat,  in _mesa_memcpy_texture()  argument
114 const GLuint texelBytes = _mesa_get_format_bytes(dstFormat); in _mesa_memcpy_texture()
153 assert(dstFormat == MESA_FORMAT_Z_UNORM32 || in _mesa_texstore_z32()
154 dstFormat == MESA_FORMAT_Z_FLOAT32); in _mesa_texstore_z32()
155 assert(_mesa_get_format_bytes(dstFormat) == sizeof(GLuint)); in _mesa_texstore_z32()
157 if (dstFormat == MESA_FORMAT_Z_UNORM32) in _mesa_texstore_z32()
190 assert(dstFormat == MESA_FORMAT_Z24_UNORM_X8_UINT); in _mesa_texstore_x8_z24()
220 assert(dstFormat == MESA_FORMAT_X8_UINT_Z24_UNORM); in _mesa_texstore_z24_x8()
253 assert(dstFormat == MESA_FORMAT_Z_UNORM16); in _mesa_texstore_z16()
254 assert(_mesa_get_format_bytes(dstFormat) == sizeof(GLushort)); in _mesa_texstore_z16()
286 assert((dstFormat == MESA_FORMAT_YCBCR) || in _mesa_texstore_ycbcr()
287 (dstFormat == MESA_FORMAT_YCBCR_REV)); in _mesa_texstore_ycbcr()
288 assert(_mesa_get_format_bytes(dstFormat) == 2); in _mesa_texstore_ycbcr()
297 dstFormat, in _mesa_texstore_ycbcr()
306 (dstFormat == MESA_FORMAT_YCBCR_REV) ^ in _mesa_texstore_ycbcr()
334 assert(dstFormat == MESA_FORMAT_S8_UINT_Z24_UNORM); in _mesa_texstore_z24_s8()
413 assert(dstFormat == MESA_FORMAT_Z24_UNORM_S8_UINT); in _mesa_texstore_s8_z24()
490 assert(dstFormat == MESA_FORMAT_S_UINT8); in _mesa_texstore_s8()
542 assert(dstFormat == MESA_FORMAT_Z32_FLOAT_S8X24_UINT); in _mesa_texstore_z32f_x24s8()
605 assert(table[dstFormat]); in texstore_depth_stencil()
606 return table[dstFormat](ctx, dims, baseInternalFormat, in texstore_depth_stencil()
607 dstFormat, dstRowStride, dstSlices, in texstore_depth_stencil()
665 assert(table[dstFormat]); in texstore_compressed()
666 return table[dstFormat](ctx, dims, baseInternalFormat, in texstore_compressed()
667 dstFormat, dstRowStride, dstSlices, in texstore_compressed()
687 if (dstFormat == MESA_FORMAT_YCBCR || dstFormat == MESA_FORMAT_YCBCR_REV) { in texstore_rgba()
689 dstFormat, dstRowStride, dstSlices, in texstore_rgba()
754 dstFormat = _mesa_get_srgb_format_linear(dstFormat); in texstore_rgba()
760 _mesa_texstore_needs_transfer_ops(ctx, baseInternalFormat, dstFormat)) { in texstore_rgba()
800 if (_mesa_get_format_base_format(dstFormat) != baseInternalFormat) { in texstore_rgba()
809 _mesa_format_convert(dstSlices[img], dstFormat, dstRowStride, in texstore_rgba()
825 mesa_format dstFormat) in _mesa_texstore_needs_transfer_ops() argument
844 dstType = _mesa_get_format_datatype(dstFormat); in _mesa_texstore_needs_transfer_ops()
854 GLenum baseInternalFormat, mesa_format dstFormat, in _mesa_texstore_can_use_memcpy() argument
858 if (_mesa_texstore_needs_transfer_ops(ctx, baseInternalFormat, dstFormat)) { in _mesa_texstore_can_use_memcpy()
863 if (baseInternalFormat != _mesa_get_format_base_format(dstFormat)) { in _mesa_texstore_can_use_memcpy()
868 if (!_mesa_format_matches_format_and_type(dstFormat, srcFormat, srcType, in _mesa_texstore_can_use_memcpy()
894 if (!_mesa_texstore_can_use_memcpy(ctx, baseInternalFormat, dstFormat, in _mesa_texstore_memcpy()
900 dstFormat, in _mesa_texstore_memcpy()
917 dstFormat, in _mesa_texstore()
926 dstFormat, dstRowStride, dstSlices, in _mesa_texstore()
929 } else if (_mesa_is_format_compressed(dstFormat)) { in _mesa_texstore()
931 dstFormat, dstRowStride, dstSlices, in _mesa_texstore()
936 dstFormat, dstRowStride, dstSlices, in _mesa_texstore()