diff options
author | Kenneth Graunke <[email protected]> | 2011-09-28 17:37:57 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2011-10-02 17:01:21 -0700 |
commit | 1165b64f561a7bdd3f603d9e30a2340774ba31ee (patch) | |
tree | 0f21c35b25b9022b6d730a49e08762eb4e41f924 /src/mesa | |
parent | b9af592dfa8f8d0fe9f29c2d48bf6846cbd5c50f (diff) |
i965: Stop lowering integer division to multiply and reciprocal.
Signed-off-by: Kenneth Graunke <[email protected]>
Tested-by: Ian Romanick <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_shader.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_shader.cpp b/src/mesa/drivers/dri/i965/brw_shader.cpp index c938c750dec..974905d6259 100644 --- a/src/mesa/drivers/dri/i965/brw_shader.cpp +++ b/src/mesa/drivers/dri/i965/brw_shader.cpp @@ -100,7 +100,6 @@ brw_link_shader(struct gl_context *ctx, struct gl_shader_program *prog) lower_instructions(shader->ir, MOD_TO_FRACT | DIV_TO_MUL_RCP | - INT_DIV_TO_MUL_RCP | SUB_TO_ADD_NEG | EXP_TO_EXP2 | LOG_TO_LOG2); |