Module: Mesa Branch: master Commit: 8f4d37889c58e75d7bb909b6525c2395690ec804 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=8f4d37889c58e75d7bb909b6525c2395690ec804
Author: Bruno Jiménez <[email protected]> Date: Fri May 30 17:31:10 2014 +0200 gallium: Add PIPE_COMPUTE_CAP_MAX_COMPUTE_UNITS Reviewed-by: Tom Stellard <[email protected]> Reviewed-by: Francisco Jerez <[email protected]> --- src/gallium/docs/source/screen.rst | 2 ++ src/gallium/include/pipe/p_defines.h | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gallium/docs/source/screen.rst b/src/gallium/docs/source/screen.rst index b8e356f..1a80b04 100644 --- a/src/gallium/docs/source/screen.rst +++ b/src/gallium/docs/source/screen.rst @@ -320,6 +320,8 @@ pipe_screen::get_compute_param. 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_COMPUTE_CAP_MAX_COMPUTE_UNITS``: Maximum number of compute units + Value type: ``uint32_t`` .. _pipe_bind: diff --git a/src/gallium/include/pipe/p_defines.h b/src/gallium/include/pipe/p_defines.h index b91845a..90f6493 100644 --- a/src/gallium/include/pipe/p_defines.h +++ b/src/gallium/include/pipe/p_defines.h @@ -645,7 +645,8 @@ enum pipe_compute_cap PIPE_COMPUTE_CAP_MAX_PRIVATE_SIZE, PIPE_COMPUTE_CAP_MAX_INPUT_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 }; /** _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
