diff options
author | Samuel Pitoiset <[email protected]> | 2017-06-14 11:27:40 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-06-18 14:20:57 +0200 |
commit | d7bee4a022ffacb2043cd6e498a742f719a8a59d (patch) | |
tree | d715031bdd6ae3de0cc44607ff8a10fc715f548c /src/mesa | |
parent | 6ff6863c329434cfc3d1424db7ca0f614eff63fd (diff) |
mesa: add KHR_no_error support for glIs{Image,Texture}HandleResidentARB()
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/texturebindless.c | 14 | ||||
-rw-r--r-- | src/mesa/main/texturebindless.h | 7 |
2 files changed, 21 insertions, 0 deletions
diff --git a/src/mesa/main/texturebindless.c b/src/mesa/main/texturebindless.c index 26b0f58bcd2..dac6c569a5e 100644 --- a/src/mesa/main/texturebindless.c +++ b/src/mesa/main/texturebindless.c @@ -870,6 +870,13 @@ _mesa_MakeImageHandleNonResidentARB(GLuint64 handle) } GLboolean GLAPIENTRY +_mesa_IsTextureHandleResidentARB_no_error(GLuint64 handle) +{ + GET_CURRENT_CONTEXT(ctx); + return is_texture_handle_resident(ctx, handle); +} + +GLboolean GLAPIENTRY _mesa_IsTextureHandleResidentARB(GLuint64 handle) { GET_CURRENT_CONTEXT(ctx); @@ -896,6 +903,13 @@ _mesa_IsTextureHandleResidentARB(GLuint64 handle) } GLboolean GLAPIENTRY +_mesa_IsImageHandleResidentARB_no_error(GLuint64 handle) +{ + GET_CURRENT_CONTEXT(ctx); + return is_image_handle_resident(ctx, handle); +} + +GLboolean GLAPIENTRY _mesa_IsImageHandleResidentARB(GLuint64 handle) { GET_CURRENT_CONTEXT(ctx); diff --git a/src/mesa/main/texturebindless.h b/src/mesa/main/texturebindless.h index d584f5cc0cc..0fcea61d432 100644 --- a/src/mesa/main/texturebindless.h +++ b/src/mesa/main/texturebindless.h @@ -87,7 +87,14 @@ void GLAPIENTRY _mesa_MakeImageHandleNonResidentARB(GLuint64 handle); GLboolean GLAPIENTRY +_mesa_IsTextureHandleResidentARB_no_error(GLuint64 handle); + +GLboolean GLAPIENTRY _mesa_IsTextureHandleResidentARB(GLuint64 handle); + +GLboolean GLAPIENTRY +_mesa_IsImageHandleResidentARB_no_error(GLuint64 handle); + GLboolean GLAPIENTRY _mesa_IsImageHandleResidentARB(GLuint64 handle); |