Mesa (master): i965: Don't hardcode FS in "validation failed!" message.

Kenneth Graunke kwg at kemper.freedesktop.org
Wed Oct 14 21:08:59 UTC 2015


Module: Mesa
Branch: master
Commit: ff31c243e38332999b617d479a0dca61b15bc1c6
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=ff31c243e38332999b617d479a0dca61b15bc1c6

Author: Kenneth Graunke <kenneth at whitecape.org>
Date:   Tue Oct 13 15:15:57 2015 -0700

i965: Don't hardcode FS in "validation failed!" message.

Instead, print "Scalar VS" or "Scalar FS".  Otherwise it's really
confusing which stage is broken.

Signed-off-by: Kenneth Graunke <kenneth at whitecape.org>
Reviewed-by: Kristian Høgsberg <krh at bitplanet.net>

---

 src/mesa/drivers/dri/i965/brw_fs_validate.cpp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mesa/drivers/dri/i965/brw_fs_validate.cpp b/src/mesa/drivers/dri/i965/brw_fs_validate.cpp
index d0e04f3..814c551 100644
--- a/src/mesa/drivers/dri/i965/brw_fs_validate.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs_validate.cpp
@@ -32,7 +32,7 @@
 
 #define fsv_assert(cond) \
    if (!(cond)) { \
-      fprintf(stderr, "ASSERT: FS validation failed!\n"); \
+      fprintf(stderr, "ASSERT: Scalar %s validation failed!\n", stage_abbrev); \
       dump_instruction(inst, stderr); \
       fprintf(stderr, "%s:%d: %s\n", __FILE__, __LINE__, #cond); \
       abort(); \




More information about the mesa-commit mailing list