diff options
author | Brian Paul <brianp@vmware.com> | 2009-01-13 10:26:25 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-01-14 08:34:06 -0700 |
commit | 658ab3c3ae4c99e841a6639f6d012c23deeb5371 (patch) | |
tree | ac9ef3b4c7b2e8e14be2ac7a3e67dcad90782fe9 /src/mesa/drivers | |
parent | 8f7349dbb46e1ec6d8194a42753e83c1913944bc (diff) |
i965: comment for emit_kil()
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_wm_glsl.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_wm_glsl.c b/src/mesa/drivers/dri/i965/brw_wm_glsl.c index 22a8cb833f..8fd776ac39 100644 --- a/src/mesa/drivers/dri/i965/brw_wm_glsl.c +++ b/src/mesa/drivers/dri/i965/brw_wm_glsl.c @@ -892,6 +892,10 @@ static void emit_lrp(struct brw_wm_compile *c, } } +/** + * For GLSL shaders, this KIL will be unconditional. + * It may be contained inside an IF/ENDIF structure of course. + */ static void emit_kil(struct brw_wm_compile *c) { struct brw_compile *p = &c->func; |