mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 19:10:14 +01:00
gallium: Add PIPE_CAP_COMPUTE_IMAGES_SUPPORTED
Reviewed-by: Marek Olšák <marek.olsak@amd.com> Reviewed-by: Francisco Jerez <currojerez@riseup.net>
This commit is contained in:
parent
d6b89aef26
commit
1607a8efc1
3 changed files with 11 additions and 1 deletions
|
|
@ -332,6 +332,8 @@ pipe_screen::get_compute_param.
|
|||
clock in MHz. Value type: ``uint32_t``
|
||||
* ``PIPE_COMPUTE_CAP_MAX_COMPUTE_UNITS``: Maximum number of compute units
|
||||
Value type: ``uint32_t``
|
||||
* ``PIPE_COMPUTE_CAP_IMAGES_SUPPORTED``: Whether images are supported
|
||||
non-zero means yes, zero means no. Value type: ``uint32_t``
|
||||
|
||||
.. _pipe_bind:
|
||||
|
||||
|
|
|
|||
|
|
@ -519,6 +519,13 @@ static int r600_get_compute_param(struct pipe_screen *screen,
|
|||
*max_compute_units = MAX2(rscreen->info.max_compute_units, 1);
|
||||
}
|
||||
return sizeof(uint32_t);
|
||||
|
||||
case PIPE_COMPUTE_CAP_IMAGES_SUPPORTED:
|
||||
if (ret) {
|
||||
uint32_t *images_supported = ret;
|
||||
*images_supported = 0;
|
||||
}
|
||||
return sizeof(uint32_t);
|
||||
}
|
||||
|
||||
fprintf(stderr, "unknown PIPE_COMPUTE_CAP %d\n", param);
|
||||
|
|
|
|||
|
|
@ -650,7 +650,8 @@ enum pipe_compute_cap
|
|||
PIPE_COMPUTE_CAP_MAX_INPUT_SIZE,
|
||||
PIPE_COMPUTE_CAP_MAX_MEM_ALLOC_SIZE,
|
||||
PIPE_COMPUTE_CAP_MAX_CLOCK_FREQUENCY,
|
||||
PIPE_COMPUTE_CAP_MAX_COMPUTE_UNITS
|
||||
PIPE_COMPUTE_CAP_MAX_COMPUTE_UNITS,
|
||||
PIPE_COMPUTE_CAP_IMAGES_SUPPORTED
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue