return _mesa_tex_format_from_format_and_type(&brw->ctx, format, type);
}
-static bool
-need_signed_unsigned_int_conversion(mesa_format src_format,
- mesa_format dst_format)
-{
- const GLenum src_type = _mesa_get_format_datatype(src_format);
- const GLenum dst_type = _mesa_get_format_datatype(dst_format);
- return (src_type == GL_INT && dst_type == GL_UNSIGNED_INT) ||
- (src_type == GL_UNSIGNED_INT && dst_type == GL_INT);
-}
-
bool
brw_blorp_upload_miptree(struct brw_context *brw,
struct intel_mipmap_tree *dst_mt,
return false;
}
- /* This function relies on blorp_blit to upload the pixel data to the
- * miptree. But, blorp_blit doesn't support signed to unsigned or
- * unsigned to signed integer conversions.
- */
- if (need_signed_unsigned_int_conversion(src_format, dst_format))
- return false;
-
uint32_t src_offset, src_row_stride, src_image_stride;
struct brw_bo *src_bo =
blorp_get_client_bo(brw, width, height, depth,
return false;
}
- /* This function relies on blorp_blit to download the pixel data from the
- * miptree. But, blorp_blit doesn't support signed to unsigned or unsigned
- * to signed integer conversions.
- */
- if (need_signed_unsigned_int_conversion(src_format, dst_format))
- return false;
-
/* We can't fetch from LUMINANCE or intensity as that would require a
* non-trivial swizzle.
*/