diff options
author | Roland Scheidegger <[email protected]> | 2018-01-30 05:48:27 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2018-02-05 19:06:03 +0000 |
commit | 0c0d6d77512fa0fb462728bbd6cfee726570efa3 (patch) | |
tree | 229b438d31540d28fd8a0c840af17af1d78b30a0 | |
parent | f90ba6c1e080f8909d0aa7e4d6e574c0d2706e01 (diff) |
r600: don't do stack workarounds for hemlock
By the looks of it it seems hemlock is treated separately to cypress, but
certainly it won't need the stack workarounds cedar/redwood (and
seemingly every other eg chip except cypress/juniper) need.
(Discovered by accident.)
Acked-by: Alex Deucher <[email protected]>
(cherry picked from commit c2f0e0885776f3f0a18b9db08149564d4b98e5b7)
-rw-r--r-- | src/gallium/drivers/r600/sb/sb_bc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/sb/sb_bc.h b/src/gallium/drivers/r600/sb/sb_bc.h index b35671bf0ff..a249395474f 100644 --- a/src/gallium/drivers/r600/sb/sb_bc.h +++ b/src/gallium/drivers/r600/sb/sb_bc.h @@ -665,6 +665,7 @@ public: return false; switch (hw_chip) { + case HW_CHIP_HEMLOCK: case HW_CHIP_CYPRESS: case HW_CHIP_JUNIPER: return false; |