diff options
author | Jason Ekstrand <[email protected]> | 2015-04-17 12:15:58 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-04-22 16:00:34 -0700 |
commit | 02ccb19495c5804f4ab798c00eeb786ee77aaacc (patch) | |
tree | 2310b3d190711a628a821a489dcde8fb6ef617ac /src/mesa/drivers/dri/i965/brw_shader.h | |
parent | 28e9601d0e681411b60a7de8be9f401b0df77d29 (diff) |
i965: Use device_info instead of the context in instruction scheduling
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_shader.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_shader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_shader.h b/src/mesa/drivers/dri/i965/brw_shader.h index b80e7405dbc..72e8be5b11a 100644 --- a/src/mesa/drivers/dri/i965/brw_shader.h +++ b/src/mesa/drivers/dri/i965/brw_shader.h @@ -100,7 +100,7 @@ struct backend_instruction : public exec_node { bool can_do_saturate() const; bool can_do_cmod() const; bool reads_accumulator_implicitly() const; - bool writes_accumulator_implicitly(struct brw_context *brw) const; + bool writes_accumulator_implicitly(const struct brw_device_info *devinfo) const; void remove(bblock_t *block); void insert_after(bblock_t *block, backend_instruction *inst); |