diff options
author | Karol Herbst <[email protected]> | 2020-02-28 15:54:08 +0100 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-03-10 22:06:19 +0000 |
commit | e1ffb72a05f9b50ee47767aaadbab3e47896ee14 (patch) | |
tree | d21fbcc831db43d2064cf9d6c171e0ddcd96c62e /src/gallium/include/pipe | |
parent | 0541350e3a3cca58484880df04c0db160180b726 (diff) |
gallium: make handles of set_global_binding 64 bit
needed by CL
Signed-off-by: Karol Herbst <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Reviewed-by: Alyssa Rosenzweig <[email protected]>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4072>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4072>
Diffstat (limited to 'src/gallium/include/pipe')
-rw-r--r-- | src/gallium/include/pipe/p_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_context.h b/src/gallium/include/pipe/p_context.h index 3a8b9eba462..3e3377a22e2 100644 --- a/src/gallium/include/pipe/p_context.h +++ b/src/gallium/include/pipe/p_context.h @@ -804,7 +804,7 @@ struct pipe_context { void (*set_global_binding)(struct pipe_context *context, unsigned first, unsigned count, struct pipe_resource **resources, - uint32_t **handles); + uint64_t **handles); /** * Launch the compute kernel starting from instruction \a pc of the |