diff options
author | Eric Anholt <[email protected]> | 2010-10-25 16:22:04 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-10-26 10:34:10 -0700 |
commit | 748f3744bebc37cc753a5ea1c321854c580a7317 (patch) | |
tree | a97e96cd74966f23cf4d859279a83b36eb50b4f7 | |
parent | 3789d5025a3200c40a39119c94c3d38a13e4b65a (diff) |
i965: Clarify an XXX comment in FB writes with real info.
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_eu_emit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_eu_emit.c b/src/mesa/drivers/dri/i965/brw_eu_emit.c index feb13e7ae47..d5f24c263fb 100644 --- a/src/mesa/drivers/dri/i965/brw_eu_emit.c +++ b/src/mesa/drivers/dri/i965/brw_eu_emit.c @@ -1736,7 +1736,8 @@ void brw_fb_WRITE(struct brw_compile *p, GLboolean header_present = GL_TRUE; insn = next_insn(p, BRW_OPCODE_SEND); - insn->header.predicate_control = 0; /* XXX */ + /* The execution mask is ignored for render target writes. */ + insn->header.predicate_control = 0; insn->header.compression_control = BRW_COMPRESSION_NONE; if (intel->gen >= 6) { |