mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-07 02:10:12 +01:00
gallium: Add PIPE_COMPUTE_CAP_MAX_CLOCK_FREQUENCY
Bruno Jiménez: v2: Updated the docs v3: Remove trailing comma Reviewed-by: Francisco Jerez <currojerez@riseup.net>
This commit is contained in:
parent
979a015bc1
commit
5fe1a0ebad
2 changed files with 4 additions and 1 deletions
|
|
@ -313,6 +313,8 @@ pipe_screen::get_compute_param.
|
|||
resource. Value type: ``uint64_t``.
|
||||
* ``PIPE_COMPUTE_CAP_MAX_MEM_ALLOC_SIZE``: Maximum size of a memory object
|
||||
allocation in bytes. Value type: ``uint64_t``.
|
||||
* ``PIPE_COMPUTE_CAP_MAX_CLOCK_FREQUENCY``: Maximum frequency of the GPU
|
||||
clock in MHz. Value type: ``uint32_t``
|
||||
|
||||
.. _pipe_bind:
|
||||
|
||||
|
|
|
|||
|
|
@ -642,7 +642,8 @@ enum pipe_compute_cap
|
|||
PIPE_COMPUTE_CAP_MAX_LOCAL_SIZE,
|
||||
PIPE_COMPUTE_CAP_MAX_PRIVATE_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
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue