summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeonsi/radeonsi_compute.c
diff options
context:
space:
mode:
authorMichel Dänzer <[email protected]>2013-06-19 18:14:01 +0200
committerMichel Dänzer <[email protected]>2013-07-10 18:40:32 +0200
commita06ee5a09e7072aab29abac7a3afe7b04b6d6ee6 (patch)
tree002c179559e77c88ada47b81003bd3a08c3c3229 /src/gallium/drivers/radeonsi/radeonsi_compute.c
parenta6b83c0f239f83feaa13b40a319a8fa0a26d66c9 (diff)
radeonsi: Handle TGSI_OPCODE_DDX/Y using local memory
16 more little piglits. Reviewed-by: Tom Stellard <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/radeonsi_compute.c')
-rw-r--r--src/gallium/drivers/radeonsi/radeonsi_compute.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/radeonsi_compute.c b/src/gallium/drivers/radeonsi/radeonsi_compute.c
index 5fb298a0455..41c72c52ffb 100644
--- a/src/gallium/drivers/radeonsi/radeonsi_compute.c
+++ b/src/gallium/drivers/radeonsi/radeonsi_compute.c
@@ -191,7 +191,7 @@ static void radeonsi_launch_grid(
| S_00B84C_TGID_Z_EN(1)
| S_00B84C_TG_SIZE_EN(1)
| S_00B84C_TIDIG_COMP_CNT(2)
- | S_00B84C_LDS_SIZE(0)
+ | S_00B84C_LDS_SIZE(shader->lds_size)
| S_00B84C_EXCP_EN(0))
;
si_pm4_set_reg(pm4, R_00B854_COMPUTE_RESOURCE_LIMITS, 0);