diff options
Diffstat (limited to 'src/mesa/main/texturebindless.h')
-rw-r--r-- | src/mesa/main/texturebindless.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/mesa/main/texturebindless.h b/src/mesa/main/texturebindless.h index 88b84ce275b..d584f5cc0cc 100644 --- a/src/mesa/main/texturebindless.h +++ b/src/mesa/main/texturebindless.h @@ -31,6 +31,38 @@ extern "C" { #endif /** + * \name Internal functions + */ +/*@{*/ + +void +_mesa_init_resident_handles(struct gl_context *ctx); +void +_mesa_free_resident_handles(struct gl_context *ctx); + +void +_mesa_init_shared_handles(struct gl_shared_state *shared); +void +_mesa_free_shared_handles(struct gl_shared_state *shared); + +void +_mesa_init_texture_handles(struct gl_texture_object *texObj); +void +_mesa_make_texture_handles_non_resident(struct gl_context *ctx, + struct gl_texture_object *texObj); +void +_mesa_delete_texture_handles(struct gl_context *ctx, + struct gl_texture_object *texObj); + +void +_mesa_init_sampler_handles(struct gl_sampler_object *sampObj); +void +_mesa_delete_sampler_handles(struct gl_context *ctx, + struct gl_sampler_object *sampObj); + +/*@}*/ + +/** * \name API functions */ /*@{*/ |