From: Kenneth Graunke Date: Mon, 3 Dec 2012 04:36:16 +0000 (-0800) Subject: i965: Allow INTEL_DEBUG=fs as a synonym for INTEL_DEBUG=wm. X-Git-Tag: android-x86-4.4-r1~2503 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=3ac97c6ccc06c877d36775885270924c0e750492;p=android-x86%2Fexternal-mesa.git i965: Allow INTEL_DEBUG=fs as a synonym for INTEL_DEBUG=wm. I keep accidentally trying to use it. "fs" is a sensible name for fragment shader debugging, and "wm" is...not. It's also more symmetric with "vs". Leave INTEL_DEBUG=wm because old habits die hard. Reviewed-by: Chad Versace Reviewed-by: Eric Anholt --- diff --git a/src/mesa/drivers/dri/intel/intel_context.c b/src/mesa/drivers/dri/intel/intel_context.c index 204609ebb66..15b77b21438 100644 --- a/src/mesa/drivers/dri/intel/intel_context.c +++ b/src/mesa/drivers/dri/intel/intel_context.c @@ -476,6 +476,7 @@ static const struct dri_debug_control debug_control[] = { { "buf", DEBUG_BUFMGR}, { "reg", DEBUG_REGION}, { "fbo", DEBUG_FBO}, + { "fs", DEBUG_WM }, { "gs", DEBUG_GS}, { "sync", DEBUG_SYNC}, { "prim", DEBUG_PRIMS },