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:
@@ -332,6 +332,8 @@ pipe_screen::get_compute_param.
|
|||||||
clock in MHz. Value type: ``uint32_t``
|
clock in MHz. Value type: ``uint32_t``
|
||||||
* ``PIPE_COMPUTE_CAP_MAX_COMPUTE_UNITS``: Maximum number of compute units
|
* ``PIPE_COMPUTE_CAP_MAX_COMPUTE_UNITS``: Maximum number of compute units
|
||||||
Value type: ``uint32_t``
|
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:
|
.. _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);
|
*max_compute_units = MAX2(rscreen->info.max_compute_units, 1);
|
||||||
}
|
}
|
||||||
return sizeof(uint32_t);
|
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);
|
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_INPUT_SIZE,
|
||||||
PIPE_COMPUTE_CAP_MAX_MEM_ALLOC_SIZE,
|
PIPE_COMPUTE_CAP_MAX_MEM_ALLOC_SIZE,
|
||||||
PIPE_COMPUTE_CAP_MAX_CLOCK_FREQUENCY,
|
PIPE_COMPUTE_CAP_MAX_CLOCK_FREQUENCY,
|
||||||
PIPE_COMPUTE_CAP_MAX_COMPUTE_UNITS
|
PIPE_COMPUTE_CAP_MAX_COMPUTE_UNITS,
|
||||||
|
PIPE_COMPUTE_CAP_IMAGES_SUPPORTED
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user