diff options
author | Matt Turner <[email protected]> | 2013-03-28 10:46:17 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2013-03-29 10:13:26 -0700 |
commit | 7997e59b6521e93dcf47f632e369596edad07b17 (patch) | |
tree | 8ac605207d1c5498a0c2fff58e456fca786ee7e5 /src/mesa | |
parent | f91e371fee542eb65d7c929c41adf4fbff80aaae (diff) |
i965: Note that write-after-write dependencies are blocking.
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs_schedule_instructions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs_schedule_instructions.cpp b/src/mesa/drivers/dri/i965/brw_fs_schedule_instructions.cpp index aa9c0a6052d..72b3729d5d0 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_schedule_instructions.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_schedule_instructions.cpp @@ -36,7 +36,7 @@ * * The basic model of the list scheduler is to take a basic block, * compute a DAG of the dependencies (RAW ordering with latency, WAW - * ordering, WAR ordering), and make a list of the DAG heads. + * ordering with latency, WAR ordering), and make a list of the DAG heads. * Heuristically pick a DAG head, then put all the children that are * now DAG heads into the list of things to schedule. * |