diff options
author | Jordan Justen <[email protected]> | 2014-08-29 11:33:34 -0700 |
---|---|---|
committer | Jordan Justen <[email protected]> | 2014-09-05 22:15:06 -0700 |
commit | 936ca6f3cfb563719d8b51ae000d4f0594aba824 (patch) | |
tree | 13bf8ef1f971c00e771785f7c2cdac1545e237ae /src/mesa/drivers/dri/i965/brw_wm.c | |
parent | d0e166752adce3f8d4e777100a01928651182a4e (diff) |
i965: Add uses_kill to brw_wm_prog_data
Signed-off-by: Jordan Justen <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_wm.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_wm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_wm.c b/src/mesa/drivers/dri/i965/brw_wm.c index 6834534c54a..58635736e36 100644 --- a/src/mesa/drivers/dri/i965/brw_wm.c +++ b/src/mesa/drivers/dri/i965/brw_wm.c @@ -156,6 +156,7 @@ bool do_wm_prog(struct brw_context *brw, fs = prog->_LinkedShaders[MESA_SHADER_FRAGMENT]; memset(&prog_data, 0, sizeof(prog_data)); + prog_data.uses_kill = fp->program.UsesKill; /* Allocate the references to the uniforms that will end up in the * prog_data associated with the compiled program, and which will be freed |