[Mesa-dev] [RFC PATCH 25/65] gallium: add ARB_bindless_texture interface
Roland Scheidegger
sroland at vmware.com
Sun May 21 23:26:49 UTC 2017
Clearly, you forgot the doc bits...
Roland
Am 19.05.2017 um 18:52 schrieb Samuel Pitoiset:
> Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
> ---
> src/gallium/include/pipe/p_context.h | 16 ++++++++++++++++
> 1 file changed, 16 insertions(+)
>
> diff --git a/src/gallium/include/pipe/p_context.h b/src/gallium/include/pipe/p_context.h
> index 4b75386a65..83eb1c9b08 100644
> --- a/src/gallium/include/pipe/p_context.h
> +++ b/src/gallium/include/pipe/p_context.h
> @@ -766,6 +766,22 @@ struct pipe_context {
> unsigned last_level,
> unsigned first_layer,
> unsigned last_layer);
> +
> + /**
> + * Bindless texture/image handles interface.
> + */
> + uint64_t (*create_texture_handle)(struct pipe_context *ctx,
> + struct pipe_resource *res,
> + struct pipe_sampler_view *view,
> + const struct pipe_sampler_state *state);
> + void (*delete_texture_handle)(struct pipe_context *ctx, uint64_t handle);
> + void (*make_texture_handle_resident)(struct pipe_context *ctx,
> + uint64_t handle, bool resident);
> + uint64_t (*create_image_handle)(struct pipe_context *ctx,
> + const struct pipe_image_view *image);
> + void (*delete_image_handle)(struct pipe_context *ctx, uint64_t handle);
> + void (*make_image_handle_resident)(struct pipe_context *ctx, uint64_t handle,
> + unsigned access, bool resident);
> };
>
>
>
More information about the mesa-dev
mailing list