diff options
author | Tom Stellard <[email protected]> | 2012-09-13 17:09:03 +0000 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2012-10-01 15:37:16 +0000 |
commit | 91ee7350014d6bd6af251d326553284420dba294 (patch) | |
tree | 1c6b3e86eb34566d91aa2220df68b66153218eb8 /src/gallium/drivers/r600/r600_pipe.c | |
parent | 44b1050e6ce9f484724d88db8d338e3aa9651548 (diff) |
r600g: Re-enable growing of the compute memory pool
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index f4d3dc1dee3..70e82062a30 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -645,10 +645,9 @@ static int r600_get_compute_param(struct pipe_screen *screen, case PIPE_COMPUTE_CAP_MAX_GLOBAL_SIZE: if (ret) { uint64_t * max_global_size = ret; - /* XXX: This is 64kb for now until we get the - * compute memory pool working correctly. - */ - *max_global_size = 1024 * 16 * 4; + /* XXX: This is what the proprietary driver reports, we + * may want to use a different value. */ + *max_global_size = 201326592; } return sizeof(uint64_t); |