mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 18:50:10 +01:00
freedreno: small rename
Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
ea3dc75d72
commit
a4744c2ae7
1 changed files with 4 additions and 4 deletions
|
|
@ -638,10 +638,10 @@ fd_get_compute_param(struct pipe_screen *pscreen, enum pipe_shader_ir ir_type,
|
|||
|
||||
case PIPE_COMPUTE_CAP_MAX_BLOCK_SIZE:
|
||||
if (ret) {
|
||||
uint64_t *grid_size = ret;
|
||||
grid_size[0] = 1024;
|
||||
grid_size[1] = 1024;
|
||||
grid_size[2] = 64;
|
||||
uint64_t *block_size = ret;
|
||||
block_size[0] = 1024;
|
||||
block_size[1] = 1024;
|
||||
block_size[2] = 64;
|
||||
}
|
||||
return 3 * sizeof(uint64_t) ;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue