From 530ff887ebac56d9d7f0ded48282b3e1709972b1 Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Wed, 14 Jun 2017 11:27:42 +0200 Subject: mesa: add KHR_no_error support for glGetTexture*HandleARB() It would be nice to have a no_error path for _mesa_test_texobj_completeness() because this function doesn't only test if the texture is complete. Anyway, that seems enough for now and a bunch of checks are skipped with this patch. Signed-off-by: Samuel Pitoiset Reviewed-by: Timothy Arceri --- src/mesa/main/texturebindless.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/mesa/main/texturebindless.h') diff --git a/src/mesa/main/texturebindless.h b/src/mesa/main/texturebindless.h index 467105ef414..62c954b6576 100644 --- a/src/mesa/main/texturebindless.h +++ b/src/mesa/main/texturebindless.h @@ -67,8 +67,15 @@ _mesa_delete_sampler_handles(struct gl_context *ctx, */ /*@{*/ +GLuint64 GLAPIENTRY +_mesa_GetTextureHandleARB_no_error(GLuint texture); + GLuint64 GLAPIENTRY _mesa_GetTextureHandleARB(GLuint texture); + +GLuint64 GLAPIENTRY +_mesa_GetTextureSamplerHandleARB_no_error(GLuint texture, GLuint sampler); + GLuint64 GLAPIENTRY _mesa_GetTextureSamplerHandleARB(GLuint texture, GLuint sampler); -- cgit v1.2.3