Module: Mesa Branch: master Commit: e8ae998c1ba48d9e18db3d9e18bb75bee962096a URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=e8ae998c1ba48d9e18db3d9e18bb75bee962096a
Author: Alyssa Rosenzweig <[email protected]> Date: Wed Jun 26 16:36:17 2019 -0700 panfrost: Dump unknown formats before aborting Signed-off-by: Alyssa Rosenzweig <[email protected]> --- src/gallium/drivers/panfrost/pan_format.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/drivers/panfrost/pan_format.c b/src/gallium/drivers/panfrost/pan_format.c index 3ab39ed3069..563b381574b 100644 --- a/src/gallium/drivers/panfrost/pan_format.c +++ b/src/gallium/drivers/panfrost/pan_format.c @@ -233,6 +233,7 @@ panfrost_find_format(const struct util_format_description *desc) break; default: + printf("%s\n", util_format_name(desc->format)); unreachable("Invalid format type"); } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
